Add in a missing client side method to modloader stubbed for the server

This commit is contained in:
Christian Weeks 2012-04-06 12:24:52 -04:00
parent 47a15f4c77
commit 21d11f431f
1 changed files with 9 additions and 0 deletions

View File

@ -606,4 +606,13 @@ public class ModLoader
{
return FMLCommonHandler.instance().isChannelActive(channel, player);
}
/**
* Stubbed method on the server to return a unique model id
*
*/
@Deprecated
public static int getUniqueBlockModelID(BaseMod mod, boolean flag) {
return 0;
}
}