Update Iron Chests to 1.12.2.
This commit is contained in:
parent
5aaf413b35
commit
0468b6d73b
|
@ -33,7 +33,7 @@ repositories {
|
|||
}
|
||||
|
||||
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
|
||||
|
@ -46,8 +46,8 @@ targetCompatibility = 1.8
|
|||
|
||||
// Setup the forge minecraft plugin data. Specify the preferred forge/minecraft version here
|
||||
minecraft {
|
||||
version = "1.12-14.21.0.2375"
|
||||
mappings = "snapshot_20170627"
|
||||
version = "1.12.2-14.23.0.2493"
|
||||
mappings = "snapshot_20170927"
|
||||
runDir = "run"
|
||||
}
|
||||
|
||||
|
|
|
@ -139,7 +139,7 @@ public class ShulkerBoxColorRecipeFactory implements IRecipeFactory
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean isHidden()
|
||||
public boolean isDynamic()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -36,8 +36,8 @@ public class ShulkerBoxRecipeFactory implements IRecipeFactory
|
|||
ShapedOreRecipe recipe = ShapedOreRecipe.factory(context, json);
|
||||
|
||||
ShapedPrimer primer = new ShapedPrimer();
|
||||
primer.width = recipe.getWidth();
|
||||
primer.height = recipe.getHeight();
|
||||
primer.width = recipe.getRecipeWidth();
|
||||
primer.height = recipe.getRecipeHeight();
|
||||
primer.mirrored = JsonUtils.getBoolean(json, "mirrored", true);
|
||||
primer.input = recipe.getIngredients();
|
||||
|
||||
|
|
Loading…
Reference in New Issue