Don't try and open GUIs on the server.
This commit is contained in:
parent
95a8b419ef
commit
c060a44371
1 changed files with 5 additions and 1 deletions
|
@ -351,10 +351,14 @@ public class FMLNetworkHandler
|
|||
{
|
||||
NetworkRegistry.instance().openRemoteGui(mc, (EntityPlayerMP) player, modGuiId, world, x, y, z);
|
||||
}
|
||||
else
|
||||
else if (FMLCommonHandler.instance().getSide().equals(Side.CLIENT))
|
||||
{
|
||||
NetworkRegistry.instance().openLocalGui(mc, player, modGuiId, world, x, y, z);
|
||||
}
|
||||
else
|
||||
{
|
||||
FMLLog.fine("Invalid attempt to open a local GUI on a dedicated server. This is likely a bug. GUIID: %s,%d", mc.getModId(), modGuiId);
|
||||
}
|
||||
}
|
||||
|
||||
public static Packet getEntitySpawningPacket(Entity entity)
|
||||
|
|
Loading…
Reference in a new issue