Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/Arch666Angel/mods into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
LovelySanta committed Oct 14, 2021
2 parents 30b11c0 + 87394d3 commit 891a7bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 = 'angels-plate-lead', 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,10 +26,10 @@ 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 = 'angels-plate-lead', 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'
},
}
})
end
end

0 comments on commit 891a7bb

Please sign in to comment.