diff --git a/common/buildcraft/core/proxy/CoreProxyClient.java b/common/buildcraft/core/proxy/CoreProxyClient.java index 8947535a..3f1a0a02 100644 --- a/common/buildcraft/core/proxy/CoreProxyClient.java +++ b/common/buildcraft/core/proxy/CoreProxyClient.java @@ -144,7 +144,7 @@ public class CoreProxyClient extends CoreProxy { } private EntityPlayer createNewPlayer(World world) { - return new EntityPlayer(world) { + EntityPlayer player = new EntityPlayer(world) { @Override public void sendChatToPlayer(String var1) {} @Override public boolean canCommandSenderUseCommand(int var1, String var2) { @@ -155,6 +155,8 @@ public class CoreProxyClient extends CoreProxy { return null; } }; + player.username = "[BuildCraft]"; + return player; } @Override