Add in a missing client side method to modloader stubbed for the server
This commit is contained in:
parent
47a15f4c77
commit
21d11f431f
1 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue