Skip to content

Commit

Permalink
fix: glue cauldron recipes for pelts being derpy
Browse files Browse the repository at this point in the history
fixes #2680
  • Loading branch information
artdude543 committed May 29, 2018
1 parent 2542687 commit 5a9f391
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/config/mputils/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ Bug Fixes:
* Blacklist Buggy Fueling pad from carry-on
* Blacklist all of PneumaticCraft from Carry-On to prevent crashes (#2651)
* Add missing Gray Wool dying recipe (#2653)
* Fix glue cauldron recipes for pelts being derpy (#2680)

Enhancements:
* Add dying recipes for the Twilight Forest Castle Doors
Expand Down
35 changes: 33 additions & 2 deletions src/scripts/mod_integrations/better_with_mods.zs
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,40 @@ Cauldron.remove([<betterwithmods:material:21> * 2]);
//Cauldron.addUnstoked(IIngredient[] inputs, IItemStack[] outputs);
//==============================
Cauldron.addUnstoked([<minecraft:rotten_flesh>, <minecraft:rotten_flesh>, <minecraft:rotten_flesh>], [<betterwithmods:material:12>]);
Cauldron.addUnstoked([<ore:pelt>], [<betterwithmods:material:12>]);

var pelts as IIngredient[] = [
<minecraft:rabbit_hide>,
<primal:pelt_animal>,
<primal:pelt_dog>,
<primal:pelt_gator>,
<primal:pelt_ovis>,
<primal:pelt_pig>,
<primal:pelt_shark>,
<primal:pelt_sheep>,
<primal:pelt_wolf>
];

var largePelts as IIngredient[] = [
<primal:pelt_animal_large>,
<primal:pelt_bear_black>,
<primal:pelt_bear_brown>,
<primal:pelt_bear_polar>,
<primal:pelt_cow>,
<primal:pelt_donkey>,
<primal:pelt_horse>,
<primal:pelt_llama>,
<primal:pelt_mooshroom>,
<primal:pelt_mule>
];

for pelt in pelts {
Cauldron.addUnstoked([pelt], [<betterwithmods:material:12>]);
}
for largePelt in largePelts {
Cauldron.addUnstoked([largePelt], [<betterwithmods:material:12> * 2]);
}

Cauldron.addUnstoked([<primal:pigman_hide_raw>], [<betterwithmods:material:12> * 2]);
Cauldron.addUnstoked([<ore:peltLarge>], [<betterwithmods:material:12> * 2]);
Cauldron.addUnstoked([<animalium:wild_dog_pelt>], [<betterwithmods:material:12>]);
Cauldron.addUnstoked([<totemic:buffalo_items>], [<betterwithmods:material:12> * 2]);
Cauldron.addUnstoked([<primal:wolf_head_item>], [<betterwithmods:material:12>, <primal:bone_knapp>]);
Expand Down

0 comments on commit 5a9f391

Please sign in to comment.