Skip to content

Commit

Permalink
fix(recipes): ✏️fix Dragon Steel smelted from unexisted items in [Sme…
Browse files Browse the repository at this point in the history
…ltery controller]
  • Loading branch information
Krutoy242 committed Mar 18, 2024
1 parent fd6fc0b commit 8953c40
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/mods/tconstruct/tconstruct.zs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ import crafttweaker.liquid.ILiquidStack;

<tconstruct:throwball>.maxStackSize = 64;

mods.tconstruct.Melting.addEntityMelting(<entity:iceandfire:hippocampus>, <fluid:liquid_helium> * 20);

// Remove and re-add dragon steel meltable items since they was removed with Gauntlet mod
mods.tconstruct.Melting.removeRecipe(<fluid:dragonsteel_fire>);
mods.tconstruct.Melting.addRecipe(<fluid:dragonsteel_fire> * 144, <iceandfire:dragonsteel_fire_ingot>);
mods.tconstruct.Melting.addRecipe(<fluid:dragonsteel_fire> * 1296, <iceandfire:dragonsteel_fire_block>);
mods.tconstruct.Melting.addRecipe(<fluid:dragonsteel_fire> * 72, <tconstruct:shard>.withTag({Material: "dragonsteel_fire"}));

mods.tconstruct.Melting.removeRecipe(<fluid:dragonsteel_ice>);
mods.tconstruct.Melting.addRecipe(<fluid:dragonsteel_ice> * 144, <iceandfire:dragonsteel_ice_ingot>);
mods.tconstruct.Melting.addRecipe(<fluid:dragonsteel_ice> * 1296, <iceandfire:dragonsteel_ice_block>);
mods.tconstruct.Melting.addRecipe(<fluid:dragonsteel_ice> * 72, <tconstruct:shard>.withTag({Material: "dragonsteel_ice"}));

// Slime Dirt -> Slime
val slimeDirts as IItemStack[][IItemStack] = {
<minecraft:slime_ball>: [
Expand Down

0 comments on commit 8953c40

Please sign in to comment.