This commit is contained in:
Brevven 2022-07-17 05:42:28 -07:00
parent 5edc6a0bb3
commit a34e7a0b09
2 changed files with 16 additions and 1 deletions

15
modules.lua Normal file
View file

@ -0,0 +1,15 @@
recipes = {"bakelite", "phenol"} -- formaldehyde excluded intentionally for theme
for i, recipe in pairs(recipes) do
if data.raw.recipe[recipe] then
for j, module in pairs(data.raw.module) do
if module.effect then
for effect_name, effect in pairs(module.effect) do
if effect_name == "productivity" and effect.bonus > 0 and module.limitation and #module.limitation > 0 then
table.insert(module.limitation, recipe)
end
end
end
end
end
end