This commit is contained in:
2025-05-20 23:12:43 +09:00
parent 5e7fb036ce
commit 311b2ba70f
2 changed files with 5 additions and 6 deletions

View File

@@ -4,6 +4,7 @@ Date: 2025-05-22
Changes:
- [SA] Support for default max quality setting is dropped, instead, having no quality in space age.
- [SA] Moved some of the settings of restriction into generic settings, but also dropped some.
---------------------------------------------------------------------------------------------------
Version: 3.0.103

View File

@@ -458,12 +458,10 @@ if mods['space-age'] and ((settings.startup['PHI-SA'].value and settings.startup
v.flow_direction = 'input-output'
end
for _, v in pairs(data.raw['cargo-wagon']) do
v.quality_affects_inventory_size = true
end
for _, v in pairs(data.raw['fluid-wagon']) do
v.quality_affects_inventory_size = true
for _, w in pairs({data.raw['cargo-wagon'], data.raw['fluid-wagon']}) do
for _, v in pairs(w) do
v.quality_affects_inventory_size = true
end
end
for _, v in pairs(data.raw['lab']) do