From 902f00687b7f999ffc4b52bdd025ca5957f9bb49 Mon Sep 17 00:00:00 2001 From: ThatGamerBlue Date: Thu, 14 Nov 2019 19:00:47 +0000 Subject: [PATCH] Fix slimey generator recipe Copied from fix for NillerMedDild/Enigmatica2Expert#1385 --- scripts/ExtraUtilities2.zs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scripts/ExtraUtilities2.zs b/scripts/ExtraUtilities2.zs index 12721d7..e32e9b8 100644 --- a/scripts/ExtraUtilities2.zs +++ b/scripts/ExtraUtilities2.zs @@ -34,4 +34,12 @@ recipes.removeShaped(); recipes.addShaped(, [[, , ], [, ringChicksEntry, ], -[, , ]]); \ No newline at end of file +[, , ]]); + +# Fixing the Slime generator recipe (something went wrong with the oredict) + recipes.remove(.withTag({Type: "extrautils2:generator_slime"}),true); + recipes.addShaped("SlimeGen", + .withTag({Type: "extrautils2:generator_slime"}), + [[, , ], + [, , ], + [, .withTag({Type: "extrautils2:generator"}), ]]);