bzgold2/modules.lua
Simon Brodtmann e900b41958 Update to 2.0
2025-10-16 00:23:29 +02:00

9 lines
279 B
Lua

-- Enable prod modules for some recipes
-- Recipes with very specific ratios are deliberately excluded
local util = require("data-util")
for i, recipe in pairs(util.me.recipes) do
if data.raw.recipe[recipe] then
data.raw.recipe[recipe].allow_productivity = true
end
end