This commit is contained in:
2025-06-04 20:06:56 +09:00
parent 31e45b3024
commit e6245bb366
2 changed files with 11 additions and 10 deletions

View File

@@ -141,6 +141,8 @@ if settings.startup['PHI-CT'].value or settings.startup['PHI-MI'].value or (sett
v.quality_affects_inventory_size = true
end
end
data.raw['utility-constants'].default.rocket_lift_weight = settings.startup['PHI-SA-ROCKET-CAPACITY'].value * 1000000
end
if mods['elevated-rails'] then
@@ -249,7 +251,6 @@ if settings.startup['PHI-MI'].value then
end
data.raw['utility-constants'].default.default_pipeline_extent = settings.startup['PHI-MI-PIPE-EXTENT'].value
data.raw['utility-constants'].default.rocket_lift_weight = settings.startup['PHI-MI-ROCKET-CAPACITY'].value * 1000000
end
if settings.startup['PHI-CT'].value or (settings.startup['PHI-MI'].value) or (settings.startup['PHI-GM'].value and settings.startup['PHI-GM'].value ~= '-') then

View File

@@ -123,15 +123,6 @@ data:extend({
maximum_value = 10240,
localised_name = {'phi-cl.combine', {'mod-setting-name-prefix.PHI-MI-PIPE-EXTENT'}, {'mod-setting-name.PHI-MI-PIPE-EXTENT'}},
order = 'B05'
}, {
type = 'int-setting',
name = 'PHI-MI-ROCKET-CAPACITY',
setting_type = 'startup',
default_value = 10,
minimum_value = 1,
maximum_value = 10000,
localised_name = {'phi-cl.combine', {'mod-setting-name-prefix.PHI-MI-ROCKET-CAPACITY'}, {'mod-setting-name.PHI-MI-ROCKET-CAPACITY'}},
order = 'B06'
}, {
type = 'bool-setting',
name = 'PHI-SA',
@@ -178,6 +169,15 @@ data:extend({
maximum_value = 100,
localised_name = {'phi-cl.combine', {'mod-setting-name-prefix.PHI-SA-QUALITY'}, {'mod-setting-name.PHI-SA-QUALITY'}},
order = 'C05'
}, {
type = 'int-setting',
name = 'PHI-SA-ROCKET-CAPACITY',
setting_type = 'startup',
default_value = 10,
minimum_value = 1,
maximum_value = 10000,
localised_name = {'phi-cl.combine', {'mod-setting-name-prefix.PHI-SA-ROCKET-CAPACITY'}, {'mod-setting-name.PHI-SA-ROCKET-CAPACITY'}},
order = 'C06'
}, {
type = 'string-setting',
name = 'PHI-GM',