Skip to content

Commit

Permalink
get lead replaced correctly in reactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kingarthur91 committed Oct 14, 2021
1 parent 1024cd5 commit 87394d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions angelsindustries/prototypes/recipes/angels-reactor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if angelsmods.industries.overhaul then
{type = 'item', name = 't4-plate', amount = 100},
{type = 'item', name = 't4-circuit', amount = 500},
{type = 'item', name = 't5-plate', amount = 100},
{type = 'item', name = 't3-plate', amount = 350}
{type = 'item', name = data.raw.item['lead-plate'] and 'lead-plate' or 'angels-plate-lead', amount = 350}
},
result = 'angels-burner-reactor'
},
Expand All @@ -26,7 +26,7 @@ if angelsmods.industries.overhaul then
{type = 'item', name = 't4-plate', amount = 100 * buildingmulti},
{type = 'item', name = 't4-circuit', amount = 500 * buildingmulti},
{type = 'item', name = 't5-plate', amount = 100 * buildingmulti},
{type = 'item', name = 't3-plate', amount = 350 * buildingmulti}
{type = 'item', name = data.raw.item['lead-plate'] and 'lead-plate' or 'angels-plate-lead', amount = 350 * buildingmulti}
},
result = 'angels-burner-reactor'
},
Expand Down

0 comments on commit 87394d3

Please sign in to comment.