mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-06-27 05:46:22 +09:00
11 lines
302 B
Lua
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
|