Fixed issue where the mod doesn't load on servers. Oops.

This commit is contained in:
WayofTime 2016-07-21 10:36:16 -04:00
parent d05f4a4af8
commit 087982eb9d
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
------------------------------------------------------
Version 2.0.3-53
------------------------------------------------------
- Fixed issue where the mod doesn't load on servers. Oops.
------------------------------------------------------ ------------------------------------------------------
Version 2.0.3-52 Version 2.0.3-52
------------------------------------------------------ ------------------------------------------------------

View file

@ -34,7 +34,8 @@ public class CompatibilityGuideAPI implements ICompatibility
} }
case POST_INIT: case POST_INIT:
{ {
GuideBloodMagic.initCategories(); if (FMLCommonHandler.instance().getSide() == Side.CLIENT)
GuideBloodMagic.initCategories();
break; break;
} }
} }