Don't try and open GUIs on the server.

This commit is contained in:
Christian 2013-11-12 18:04:25 -05:00
parent 95a8b419ef
commit c060a44371
1 changed files with 5 additions and 1 deletions

View File

@ -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)