Update to forge 1492
This commit is contained in:
@ -6,9 +6,9 @@
|
||||
FMLHandshakeMessage.ModList client = (FMLHandshakeMessage.ModList)msg;
|
||||
- FMLLog.info("Client attempting to join with %d mods : %s", client.modListSize(), client.modListAsString());
|
||||
+ if (net.minecraft.server.MinecraftServer.kcauldronConfig.loggingClientModList.getValue()) {
|
||||
+ FMLLog.info("Client attempting to join with %d mods : %s", client.modListSize(), client.modListAsString());
|
||||
+ FMLLog.info("Client attempting to join with %d mods : %s", client.modListSize(), client.modListAsString());
|
||||
+ } else {
|
||||
+ FMLLog.info("Client attempting to join with %d mods", client.modListSize());
|
||||
+ FMLLog.info("Client attempting to join with %d mods", client.modListSize());
|
||||
+ }
|
||||
String result = FMLNetworkHandler.checkModList(client, Side.CLIENT);
|
||||
if (result != null)
|
||||
|
Reference in New Issue
Block a user