Update Iron Chests to 1.12.2.

This commit is contained in:
alexbegt 2017-09-27 22:37:10 -04:00
parent 5aaf413b35
commit 0468b6d73b
3 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@ repositories {
} }
dependencies { dependencies {
deobfCompile "mezz.jei:jei_1.12:4.7.0.+" deobfCompile "mezz.jei:jei_1.12.2:4.7.+"
} }
// This is our group. I'm cpw.mods // This is our group. I'm cpw.mods
@ -46,8 +46,8 @@ targetCompatibility = 1.8
// Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here // Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here
minecraft { minecraft {
version = "1.12-14.21.0.2375" version = "1.12.2-14.23.0.2493"
mappings = "snapshot_20170627" mappings = "snapshot_20170927"
runDir = "run" runDir = "run"
} }

View File

@ -139,7 +139,7 @@ public class ShulkerBoxColorRecipeFactory implements IRecipeFactory
} }
@Override @Override
public boolean isHidden() public boolean isDynamic()
{ {
return true; return true;
} }

View File

@ -36,8 +36,8 @@ public class ShulkerBoxRecipeFactory implements IRecipeFactory
ShapedOreRecipe recipe = ShapedOreRecipe.factory(context, json); ShapedOreRecipe recipe = ShapedOreRecipe.factory(context, json);
ShapedPrimer primer = new ShapedPrimer(); ShapedPrimer primer = new ShapedPrimer();
primer.width = recipe.getWidth(); primer.width = recipe.getRecipeWidth();
primer.height = recipe.getHeight(); primer.height = recipe.getRecipeHeight();
primer.mirrored = JsonUtils.getBoolean(json, "mirrored", true); primer.mirrored = JsonUtils.getBoolean(json, "mirrored", true);
primer.input = recipe.getIngredients(); primer.input = recipe.getIngredients();