Merge pull request #627 from GotoLink/patch-1

Stop IllegalFormatConversionException thrown
This commit is contained in:
LexManos 2015-04-02 13:32:56 -07:00
commit 6d71b05838
1 changed files with 2 additions and 2 deletions

View File

@ -632,13 +632,13 @@ public class FMLModContainer implements ModContainer
if (clientSideOnly && side != Side.CLIENT)
{
FMLLog.info("Disabling mod %d it is client side only.", getModId());
FMLLog.info("Disabling mod %s it is client side only.", getModId());
return false;
}
if (serverSideOnly && side != Side.SERVER)
{
FMLLog.info("Disabling mod %d it is server side only.", getModId());
FMLLog.info("Disabling mod %s it is server side only.", getModId());
return false;
}