Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Commit

Permalink
Temporary fix for smeltery melting
Browse files Browse the repository at this point in the history
Should stop the crashing for #43, but won't be a complete fix.  Will need to re-implement once ModTweaker fixes the issue on their end.
  • Loading branch information
UndeadZeratul committed Nov 10, 2014
1 parent ce1a728 commit f773dcc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/TWBB TiC Tweaks.zs
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,9 @@ furnace.remove(goldOre);
# SMELTERY TWEAKS
#----------

/*
# DISABLING FOR NOW UNTIL BUG WITH SMELTERY MELTING IS FIXED
# Nerf Stone to Seared Stone Melting
for stoneBlock in stone.items {
Smeltery.removeMelting(stoneBlock);
Expand Down Expand Up @@ -920,10 +923,14 @@ for i, toolPart in stoneOctupleToolParts {
Smeltery.addMelting(toolPart, moltenSearedStone * 16, 800, <minecraft:stone>);
}
*/

# Bucket Melts to Steel
Smeltery.addMelting(bucket, moltenSteel * 432, 700, steelBlock);

/*
# DISABLING FOR NOW UNTIL BUG WITH SMELTERY MELTING IS FIXED
# Disable Smeltery Melting to Require High Oven
Smeltery.removeMelting(netherCopperOre);
Smeltery.removeMelting(netherTinOre);
Expand All @@ -937,6 +944,7 @@ Smeltery.removeMelting(arditeOre);
#Smeltery.removeMelting(cobaltShard);
#Smeltery.removeMelting(arditeShard);
#Smeltery.removeMelting(manyullynShard);
*/

/*
# To disable re-melting of toolparts, delete the comment above this line,
Expand Down

0 comments on commit f773dcc

Please sign in to comment.