Skip to content

Commit

Permalink
fix: wither skulls not craftable with withering souls
Browse files Browse the repository at this point in the history
fixes #2564
  • Loading branch information
Jandakast committed May 22, 2018
1 parent 84df97b commit 1557668
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/config/mputils/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Bug Fixes:
* Fixed missed recipes in ExPlant with it's uranium (#2539)
* Fixed Blood Magic bound tools being able to break in some situations
* Hopefully fix the spawn rate for Imps (#1910)
* Fixed Wither Skulls not craftable with withering souls (#2564)

Enhancements:
* Add dying recipes for the Twilight Forest Castle Doors
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/recipes/shaped_recipe_master.zs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ recipes.removeShaped(<quantumstorage:quantum_bag>, [
[<ore:wool>, <ore:wool>, <ore:wool>]
]);


recipes.removeShaped(<minecraft:skull:1> * 3);



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1367,6 +1367,15 @@ var shapedRecipes as IIngredient[][][][IItemStack] = {
[<industrialforegoing:conveyor:*>, <ore:dyeLightGray>, <industrialforegoing:conveyor:*>],
[<industrialforegoing:conveyor:*>, <industrialforegoing:conveyor:*>, <industrialforegoing:conveyor:*>]
]
],

//Withering Souls to Skulls fix
<minecraft:skull:1> * 3 : [
[
[<mysticalagradditions:stuff:1>, <mysticalagradditions:stuff:1>, null],
[<mysticalagradditions:stuff:1>, null, null],
[null, null, null]
]
]

};
Expand Down
2 changes: 2 additions & 0 deletions src/scripts/staging/item_and_recipes/05_five/items.zs
Original file line number Diff line number Diff line change
Expand Up @@ -2045,6 +2045,8 @@ for item in stage5Items {
//Leave this to allow Dragon Scales to be used in Stage 4
mods.ItemStages.removeItemStage(<mysticalagradditions:stuff:3>);
mods.ItemStages.addItemStage(STAGES.four, <mysticalagradditions:stuff:3>);
mods.ItemStages.removeItemStage(<mysticalagradditions:stuff:1>);
mods.ItemStages.addItemStage(STAGES.three, <mysticalagradditions:stuff:1>);

//TODO: Handle better
//Set soulstone to stage 3
Expand Down

0 comments on commit 1557668

Please sign in to comment.