Update Iron Chests to 1.12.2.
This commit is contained in:
parent
5aaf413b35
commit
0468b6d73b
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -139,7 +139,7 @@ public class ShulkerBoxColorRecipeFactory implements IRecipeFactory
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isHidden()
|
public boolean isDynamic()
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue