Skip to content

Commit

Permalink
Fix slimey generator recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatGamerBlue authored Nov 14, 2019
1 parent dfb2f88 commit 902f006
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion scripts/ExtraUtilities2.zs
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,12 @@ recipes.removeShaped(<extrautils2:chickenring>);
recipes.addShaped(<extrautils2:chickenring>,
[[<ore:feather>, <ore:ingotIron>, <ore:feather>],
[<ore:ingotIron>, ringChicksEntry, <ore:ingotIron>],
[<extrautils2:ingredients>, <ore:ingotIron>, <extrautils2:ingredients>]]);
[<extrautils2:ingredients>, <ore:ingotIron>, <extrautils2:ingredients>]]);

# Fixing the Slime generator recipe (something went wrong with the oredict)
recipes.remove(<extrautils2:machine>.withTag({Type: "extrautils2:generator_slime"}),true);
recipes.addShaped("SlimeGen",
<extrautils2:machine>.withTag({Type: "extrautils2:generator_slime"}),
[[<ore:slimeball>, <ore:slimeball>, <ore:slimeball>],
[<ore:slimeball>, <ore:blockSlime>, <ore:slimeball>],
[<ore:dustRedstone>, <extrautils2:machine>.withTag({Type: "extrautils2:generator"}), <ore:dustRedstone>]]);

0 comments on commit 902f006

Please sign in to comment.