Correct the return value of getPlayerListName
By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
parent
7f39ea8c4c
commit
a621457aeb
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
|||
|
||||
@Override
|
||||
public String getPlayerListName() {
|
||||
return CraftChatMessage.fromComponent(getHandle().listName);
|
||||
return getHandle().listName == null ? getName() : CraftChatMessage.fromComponent(getHandle().listName);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue