Fixed the GC issues

This commit is contained in:
WayofTime 2014-03-07 14:17:06 -05:00
parent b34ff3c58e
commit 5a4bb6e8e8
4 changed files with 16 additions and 9 deletions

View file

@ -145,6 +145,7 @@ public class AlchemicalWizardry
public static boolean isThaumcraftLoaded;
public static boolean isForestryLoaded;
public static boolean isGCLoaded;
public static CreativeTabs tabBloodMagic = new CreativeTabs("tabBloodMagic")
{
@ -958,5 +959,13 @@ public class AlchemicalWizardry
{
this.isForestryLoaded = false;
}
if(Loader.isModLoaded("GalacticraftCore"))
{
this.isGCLoaded = true;
}else
{
this.isGCLoaded = false;
}
}
}