This commit is contained in:
Christian 2012-10-18 21:00:58 -04:00
parent 5b4de7b2b5
commit ce138ec571
1 changed files with 3 additions and 3 deletions

View File

@ -100,15 +100,15 @@ public class NetworkModHandler
} }
} }
FMLLog.finest("Testing mod %s to very it can accept it's own version in a remote connection", container.getModId()); FMLLog.finest("Testing mod %s to verify it accepts its own version in a remote connection", container.getModId());
boolean acceptsSelf = acceptVersion(container.getVersion()); boolean acceptsSelf = acceptVersion(container.getVersion());
if (!acceptsSelf) if (!acceptsSelf)
{ {
FMLLog.severe("The mod %s appears to reject it's own version number (%s) in it's version handling. This is likely a severe bug in the mod!", container.getModId(), container.getVersion()); FMLLog.severe("The mod %s appears to reject its own version number (%s) in its version handling. This is likely a severe bug in the mod!", container.getModId(), container.getVersion());
} }
else else
{ {
FMLLog.finest("The mod %s accepts it's own version (%s)", container.getModId(), container.getVersion()); FMLLog.finest("The mod %s accepts its own version (%s)", container.getModId(), container.getVersion());
} }
tryCreatingPacketHandler(container, mod.packetHandler(), mod.channels(), null); tryCreatingPacketHandler(container, mod.packetHandler(), mod.channels(), null);