This commit is contained in:
2024-10-31 20:35:38 +09:00
parent 4db431ab51
commit 3af9851980
4 changed files with 29 additions and 19 deletions

View File

@@ -340,7 +340,7 @@ local items = {
}
}
if mods and mods['space-age'] then
if mods['space-age'] then
items['item']['fusion-reactor'] = {
enabled = settings.startup['PHI-EN'].value,
stage = 1,
@@ -495,17 +495,6 @@ if mods and mods['space-age'] then
max = settings.startup['PHI-MB-MACHINE-TIER'].value
}
items['item']['recycler'] = {
enabled = settings.startup['PHI-MB'].value,
stage = 1,
type = 'furnace',
name = 'recycler',
ref_name = 'recycler',
tech = 'recycling',
min = 2,
max = settings.startup['PHI-MB-MACHINE-TIER'].value
}
items['item']['agricultural-tower'] = {
enabled = settings.startup['PHI-MB'].value,
stage = 2,
@@ -544,4 +533,17 @@ if mods and mods['space-age'] then
items['equipment']['battery-equipment'].min = 4
end
if mods['quality'] then
items['item']['recycler'] = {
enabled = settings.startup['PHI-MB'].value,
stage = 1,
type = 'furnace',
name = 'recycler',
ref_name = 'recycler',
tech = 'recycling',
min = 2,
max = settings.startup['PHI-MB-MACHINE-TIER'].value
}
end
return items