parent
0c7f07001b
commit
54817286e6
7 changed files with 35 additions and 3 deletions
|
@ -101,16 +101,16 @@ dependencies {
|
|||
// compile "com.pahimar.ee3:EquivalentExchange3:1.7.10-0.3.507:dev"
|
||||
// compile "net.sengir.forestry:forestry_1.7.10:4.2.0.47:dev"
|
||||
// shade "net.sengir.forestry:forestry_1.7.10:4.2.0.47:api"
|
||||
// compile "slimeknights:TConstruct:1.8.8-2.0.1.jenkins11:deobf"
|
||||
compile "slimeknights:TConstruct:1.8.8-2.0.1.jenkins11:deobf"
|
||||
// compile "mods.natura:natura:1.7.10-107.779621d:deobf"
|
||||
// compile "slimeknights.mantle:Mantle:1.8.8-0.6.jenkins60:deobf"
|
||||
compile "slimeknights.mantle:Mantle:1.8.8-0.6.jenkins60:deobf"
|
||||
compile "com.github.glitchfiend.biomesoplenty:BiomesOPlenty:1.8.8-3.0.0.1532:deobf"
|
||||
//compile 'Azanor:Thaumcraft:5.0.3:deobf@jar'
|
||||
compile "com.github.azanor:baubles:1.1.2.0:deobf@jar"
|
||||
deobfCompile name: "CraftTweaker", version: "1.8.8-3.0.0", classifier: "Dev"
|
||||
// shade 'IC2-Classic-API-STANDALONE:IC2-Classic-API-STANDALONE:1.1.0.19-5:api'
|
||||
compile 'RebornCore:RebornCore-1.8.9:1.2.2.+:dev'
|
||||
// deobfCompile "mezz.jei:jei_1.8.9:2.13.0.52"
|
||||
deobfCompile "mezz.jei:jei_1.8.9:2.13.0.52"
|
||||
|
||||
testCompile 'junit:junit:4.12'
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package techreborn.compat;
|
||||
|
||||
import net.minecraftforge.fml.common.Loader;
|
||||
import techreborn.compat.jei.JEIPlugin;
|
||||
import techreborn.compat.minetweaker.MinetweakerCompat;
|
||||
import techreborn.compat.recipes.RecipesBiomesOPlenty;
|
||||
import techreborn.compat.recipes.RecipesStandalone;
|
||||
|
@ -32,6 +33,7 @@ public class CompatManager {
|
|||
if (Loader.isModLoaded("gregtech")) {
|
||||
isGregTechLoaded = true;
|
||||
}
|
||||
registerCompact(JEIPlugin.class, "JEI");
|
||||
registerCompact(CompatModuleWaila.class, "Waila");
|
||||
registerCompact(RecipesStandalone.class);
|
||||
registerCompact(MinetweakerCompat.class, "MineTweaker3");
|
||||
|
|
29
src/main/java/techreborn/compat/jei/JEIPlugin.java
Normal file
29
src/main/java/techreborn/compat/jei/JEIPlugin.java
Normal file
|
@ -0,0 +1,29 @@
|
|||
package techreborn.compat.jei;
|
||||
|
||||
import net.minecraftforge.fml.common.event.FMLInitializationEvent;
|
||||
import net.minecraftforge.fml.common.event.FMLPostInitializationEvent;
|
||||
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
||||
import net.minecraftforge.fml.common.event.FMLServerStartingEvent;
|
||||
import techreborn.compat.ICompatModule;
|
||||
|
||||
public class JEIPlugin implements ICompatModule {
|
||||
@Override
|
||||
public void preInit(FMLPreInitializationEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(FMLInitializationEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void postInit(FMLPostInitializationEvent event) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void serverStarting(FMLServerStartingEvent event) {
|
||||
|
||||
}
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
package techreborn.compat.jei;
|
||||
|
||||
import mezz.jei.api.*;
|
||||
import net.minecraftforge.fml.common.Loader;
|
||||
import techreborn.api.reactor.FusionReactorRecipeHelper;
|
||||
import techreborn.compat.jei.fusionReactor.FusionReactorRecipeCategory;
|
Loading…
Add table
Reference in a new issue