1.8.9 update
This commit is contained in:
parent
b2cd388527
commit
895d5cfdd9
3 changed files with 21 additions and 7 deletions
|
@ -76,8 +76,8 @@ if (ENV.BUILD_NUMBER) {
|
|||
}
|
||||
|
||||
minecraft {
|
||||
version = "1.8.8-11.15.0.1635-1.8.8"
|
||||
mappings = 'snapshot_20151205'
|
||||
version = "1.8.9-11.15.0.1658"
|
||||
mappings = 'snapshot_20151230'
|
||||
replace "@MODVERSION@", project.version
|
||||
makeObfSourceJar = false
|
||||
useDepAts = true
|
||||
|
@ -109,8 +109,8 @@ dependencies {
|
|||
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.8:1.2.1.+:dev'
|
||||
deobfCompile "mezz.jei:jei_1.8.8:2.9.0.42"
|
||||
compile 'RebornCore:RebornCore-1.8.9:1.2.2.+:dev'
|
||||
deobfCompile "mezz.jei:jei_1.8.9:2.13.0.52"
|
||||
|
||||
testCompile 'junit:junit:4.12'
|
||||
}
|
||||
|
|
|
@ -38,7 +38,7 @@ import techreborn.world.TROreGen;
|
|||
|
||||
import java.io.File;
|
||||
|
||||
@Mod(modid = ModInfo.MOD_ID, name = ModInfo.MOD_NAME, version = ModInfo.MOD_VERSION, dependencies = ModInfo.MOD_DEPENDENCUIES, guiFactory = ModInfo.GUI_FACTORY_CLASS)
|
||||
@Mod(modid = ModInfo.MOD_ID, name = ModInfo.MOD_NAME, version = ModInfo.MOD_VERSION, dependencies = ModInfo.MOD_DEPENDENCUIES, guiFactory = ModInfo.GUI_FACTORY_CLASS, acceptedMinecraftVersions = "[1.8.8,1.8.9]")
|
||||
public class Core {
|
||||
public static ConfigTechReborn config;
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package techreborn.compat.jei;
|
||||
|
||||
import mezz.jei.api.IModPlugin;
|
||||
import mezz.jei.api.IModRegistry;
|
||||
import mezz.jei.api.*;
|
||||
import net.minecraftforge.fml.common.Loader;
|
||||
import techreborn.api.reactor.FusionReactorRecipeHelper;
|
||||
import techreborn.compat.jei.fusionReactor.FusionReactorRecipeCategory;
|
||||
|
@ -19,6 +18,16 @@ public class TechRebornPlugin implements IModPlugin {
|
|||
return Loader.isModLoaded(ModInfo.MOD_ID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onJeiHelpersAvailable(IJeiHelpers jeiHelpers) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onItemRegistryAvailable(IItemRegistry itemRegistry) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void register(IModRegistry registry) {
|
||||
registry.addRecipeCategories(
|
||||
|
@ -31,4 +40,9 @@ public class TechRebornPlugin implements IModPlugin {
|
|||
recipes.addAll(FusionReactorRecipeHelper.reactorRecipes);
|
||||
registry.addRecipes(recipes);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onRecipeRegistryAvailable(IRecipeRegistry recipeRegistry) {
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue