Files
factorio-mod-PHI-CL/PHI-CL/data-updates.lua
T
2026-06-26 02:08:53 +09:00

11 lines
302 B
Lua

if settings.startup['PHI-GM'].value then
if settings.startup['PHI-GM'].value == 'VP' then
for k, v in pairs(data.raw.recipe) do
if v.categories and v.categories == {'recycling'} and v.hidden then
data.raw.recipe[k] = nil
end
end
end
end