fix nulled username in welcomer

This commit is contained in:
Bella 2019-12-04 14:25:24 -05:00
parent b321e7256e
commit 613c72a588
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ public class KamiGUI extends GUI {
boolean privateInfoPin = (((InfoOverlay)ModuleManager.getModuleByName("InfoOverlay")).globalInfoPin.getValue());
boolean privateInfoMem = (((InfoOverlay)ModuleManager.getModuleByName("InfoOverlay")).globalInfoMem.getValue());
int privatePingValue = CalcPing.globalInfoPingValue();
ITextComponent privateDisplayN = Wrapper.getMinecraft().getConnection().getPlayerInfo(Wrapper.getPlayer().getUniqueID()).getDisplayName();
String privateDisplayN = Wrapper.getMinecraft().player.getName();