mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 11:44:19 +01:00
Fixed CraftOfflinePlayer.getLastPlayed() returning the wrong result. Addresses BUKKIT-847
By: Olof Larsson <olof@sylt.nu>
This commit is contained in:
parent
3487d1e709
commit
f0ed27ad63
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ public class CraftOfflinePlayer implements OfflinePlayer, ConfigurationSerializa
|
||||||
|
|
||||||
public long getLastPlayed() {
|
public long getLastPlayed() {
|
||||||
Player player = getPlayer();
|
Player player = getPlayer();
|
||||||
if (player != null) return player.getFirstPlayed();
|
if (player != null) return player.getLastPlayed();
|
||||||
|
|
||||||
NBTTagCompound data = getBukkitData();
|
NBTTagCompound data = getBukkitData();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue