Skip to content

Commit

Permalink
Merge pull request #583 from ThatGamerBlue/master
Browse files Browse the repository at this point in the history
Fix slimey generator recipe
  • Loading branch information
NielsPilgaard authored Nov 15, 2019
2 parents dfb2f88 + 902f006 commit a9bb0c4
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 a9bb0c4

Please sign in to comment.