This commit is contained in:
drtshock 2014-04-16 12:12:18 -05:00
parent d93a0b16cc
commit 9d73339e14
1 changed files with 1 additions and 4 deletions

View File

@ -300,10 +300,7 @@ public class FPlayer extends PlayerEntity implements EconomyParticipator {
}
public String getName() {
if (getPlayer() == null) {
return getId();
}
return getPlayer().getName();
return getPlayer() != null ? getPlayer().getName() : getId();
}
public String getTag() {