Skip to content

Commit

Permalink
fix bad ingot mold recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
eerussianguy committed Jul 20, 2023
1 parent c92ee72 commit 7e98aeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/metal_stuff.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def item(_variant: str) -> str:
if item == 'ingot' or (item_data.mold and 'tool' in metal_data.types and metal_data.tier <= 2):
casting_recipe(rm, '%s_%s' % (metal, item), item, metal, item_data.smelt_amount, 0.1 if item == 'ingot' else 1)
if item == 'ingot':
casting_recipe(rm, '%s_%s_fire' % (metal, item), 'fire_ingot', metal, item_data.smelt_amount, 0.01, 'firmalife:metal/ingot/stainless_steel')
casting_recipe(rm, '%s_%s_fire' % (metal, item), 'fire_ingot', metal, item_data.smelt_amount, 0.01, 'firmalife:metal/ingot/%s' % metal)
rm.blockstate(('fluid', 'metal', metal)).with_block_model({'particle': 'block/lava_still'}, parent=None).with_lang(lang('Molten %s', metal))
rm.lang('fluid.firmalife.metal.%s' % metal, lang('Molten %s', metal))
rm.fluid_tag(metal, 'firmalife:metal/%s' % metal, 'firmalife:metal/flowing_%s' % metal)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"amount": 100
},
"result": {
"item": "firmalife:metal/ingot/stainless_steel"
"item": "firmalife:metal/ingot/chromium"
},
"break_chance": 0.01
}

0 comments on commit 7e98aeb

Please sign in to comment.