Never allow LD_NoName to have visibility of always

This commit is contained in:
libraryaddict 2021-02-08 11:04:19 +13:00
parent b3f8a7b24e
commit 38117d9f59
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ public class DisguiseUtilities {
}
public void handleTeam(Scoreboard board, boolean nameVisible) {
nameVisible = !DisguiseConfig.isArmorstandsName() && nameVisible;
nameVisible = !getPlayer().equals("LD_NoName") && !DisguiseConfig.isArmorstandsName() && nameVisible;
Team team = board.getTeam(getTeamName());
if (team == null) {