Fix CraftTweaker compatibility

A version of CraftTweaker that is compatible with 1.9.4 has been
released since the Minetweaker/CraftTweaker dependency was removed. I
have restored compatibility with the new version of CraftTweaker
This commit is contained in:
al132 2016-07-14 17:15:36 -05:00
parent 2296e6fc18
commit 01516c93a3
18 changed files with 2 additions and 1 deletions

Binary file not shown.

View file

@ -6,6 +6,7 @@ import net.minecraftforge.fml.common.Loader;
import net.minecraftforge.fml.relauncher.Side;
import techreborn.client.render.parts.ClientPartLoader;
import techreborn.compat.ic2.RecipesIC2;
import techreborn.compat.minetweaker.MinetweakerCompat;
import techreborn.compat.theoneprobe.CompactTheOneProbe;
import techreborn.compat.tinkers.CompatModuleTinkers;
import techreborn.compat.waila.CompatModuleWaila;
@ -26,7 +27,7 @@ public class CompatManager
public CompatManager()
{
isIC2Loaded = Loader.isModLoaded("IC2");
//registerCompact(MinetweakerCompat.class, "MineTweaker3");
registerCompact(MinetweakerCompat.class, "MineTweaker3");
registerCompact(TechRebornParts.class, "reborncore-mcmultipart");
registerCompact(ClientPartLoader.class, "reborncore-mcmultipart", "@client");
registerCompact(StandalonePartCompact.class, "!reborncore-mcmultipart");