13
0
geforkt von Mirrors/Paper

Fixed CraftOfflinePlayer.getLastPlayed() returning the wrong result. Addresses BUKKIT-847

By: Olof Larsson <olof@sylt.nu>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2012-02-27 16:31:52 +01:00
Ursprung 3487d1e709
Commit f0ed27ad63

Datei anzeigen

@ -167,7 +167,7 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
public long getLastPlayed() {
Player player = getPlayer();
if (player != null) return player.getFirstPlayed();
if (player != null) return player.getLastPlayed();
NBTTagCompound data = getBukkitData();