Remove 1.9 deps

This commit is contained in:
modmuss50 2016-05-22 13:24:44 +01:00
parent fda54cb37b
commit ccb5ab7e2f
21 changed files with 4 additions and 6 deletions

View file

@ -87,8 +87,8 @@ dependencies {
deobfCompile "mezz.jei:jei_1.9.4:+"
deobfCompile 'MCMultiPart:MCMultiPart-experimental:1.2.0_67:universal'
compile "net.darkhax.tesla:Tesla:1.9-1.0.2.23:deobf"
deobfCompile "slimeknights.mantle:Mantle:1.9-0.10.0.jenkins132"
deobfCompile "slimeknights:TConstruct:1.9-2.3.0.jenkins193"
//deobfCompile "slimeknights.mantle:Mantle:1.9-0.10.0.jenkins132"
//deobfCompile "slimeknights:TConstruct:1.9-2.3.0.jenkins193"
}

View file

@ -4,8 +4,6 @@ import net.minecraftforge.fml.common.FMLCommonHandler;
import net.minecraftforge.fml.common.Loader;
import net.minecraftforge.fml.relauncher.Side;
import techreborn.client.render.parts.ClientPartLoader;
import techreborn.compat.minetweaker.MinetweakerCompat;
import techreborn.compat.tinkers.CompatModuleTinkers;
import techreborn.compat.waila.CompatModuleWaila;
import techreborn.config.ConfigTechReborn;
import techreborn.parts.StandalonePartCompact;
@ -40,13 +38,13 @@ public class CompatManager
{
isGregTechLoaded = true;
}
registerCompact(MinetweakerCompat.class, "MineTweaker3");
//registerCompact(MinetweakerCompat.class, "MineTweaker3");
registerCompact(TechRebornParts.class, "mcmultipart");
registerCompact(ClientPartLoader.class, "mcmultipart", "@client");
registerCompact(StandalonePartCompact.class, "!mcmultipart");
registerCompact(WailaMcMultiPartCompact.class, "mcmultipart", "Waila", "!IC2");
registerCompact(CompatModuleWaila.class, "Waila");
registerCompact(CompatModuleTinkers.class, "tconstruct");
//registerCompact(CompatModuleTinkers.class, "tconstruct");
//registerCompact(CompatModulePsi.class, "Psi");
}