This commit is contained in:
2025-04-03 00:14:44 +09:00
parent 6fababe5d2
commit deb5f3a1bd
2 changed files with 9 additions and 1 deletions

View File

@@ -2,10 +2,17 @@ local items = require 'config'
local main = require 'main'
if mods['space-age'] and settings.startup['PHI-VP'].value and settings.startup['PHI-VP-MAIN'].value then
local vp = settings.startup['PHI-VP'].value and settings.startup['PHI-VP-MAIN'].value
local sa = settings.startup['PHI-SA'].value and settings.startup['PHI-SA-GENERIC'].value
for k, v in pairs(data.raw.recipe) do
if v.category == 'recycling' then
if vp and v.category == 'recycling' then
data.raw.recipe[k] = nil
end
if (vp or sa) and v.maximum_productivity then
v.maximum_productivity = nil
end
end
end