Skip to content

Commit

Permalink
fix: Set nether wart and netherrack to non defaulting
Browse files Browse the repository at this point in the history
Fixes #1274
Fixes #1941
  • Loading branch information
justinrusso committed May 24, 2018
1 parent 8bd2203 commit 2d82474
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions src/config/mputils/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ Bug Fixes:
* Fix Diamond Block not having an uncraft recipe back to Diamonds (#2599)
* Fix IE Bottling Machine being staged wrong (#2607)
* Fix Molten Stone exploit with melting Seared Cobblestone (#1673)
* Fix Nether Wart turning into beetroot when breaking the block below it (#1274)
* Fix Netherrack breaking into Low Grade Charcoal from explosions etc (#1941)

Enhancements:
* Add dying recipes for the Twilight Forest Castle Doors
Expand Down
14 changes: 8 additions & 6 deletions src/scripts/staging/zz_ore_tiers.zs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ var replacementItemsForStage as IIngredient[][][string] = {

//Nether
[<minecraft:soul_sand>, <minecraft:dirt>],
[<minecraft:netherrack>, <primal_tech:charcoal_block>],
[<minecraft:glowstone>],
[<minecraft:quartz_ore>, <minecraft:netherrack>],
[<abyssalcraft:abyore>],
Expand Down Expand Up @@ -288,7 +287,10 @@ var nonDefaultReplacementItemsForStage as IIngredient[][][string] = {

STAGES.three : [
//Worldgen Items
[<minecraft:rail:*>, <immcraft:rock>]
[<minecraft:rail:*>, <immcraft:rock>],

// Nether
[<minecraft:netherrack>, <primal_tech:charcoal_block>]
]
};

Expand All @@ -305,7 +307,7 @@ for stage, itemReplacementPairs in nonDefaultReplacementItemsForStage {
}

//Nether Wart
mods.orestages.OreStages.addReplacementById("three", "minecraft:nether_wart:0", "minecraft:beetroots:0");
mods.orestages.OreStages.addReplacementById("three", "minecraft:nether_wart:1", "minecraft:beetroots:1");
mods.orestages.OreStages.addReplacementById("three", "minecraft:nether_wart:2", "minecraft:beetroots:2");
mods.orestages.OreStages.addReplacementById("three", "minecraft:nether_wart:3", "minecraft:beetroots:3");
mods.orestages.OreStages.addNonDefaultingReplacementById(STAGES.three, "minecraft:nether_wart:0", "minecraft:beetroots:0");
mods.orestages.OreStages.addNonDefaultingReplacementById(STAGES.three, "minecraft:nether_wart:1", "minecraft:beetroots:1");
mods.orestages.OreStages.addNonDefaultingReplacementById(STAGES.three, "minecraft:nether_wart:2", "minecraft:beetroots:2");
mods.orestages.OreStages.addNonDefaultingReplacementById(STAGES.three, "minecraft:nether_wart:3", "minecraft:beetroots:3");

0 comments on commit 2d82474

Please sign in to comment.