mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-05-12 21:08:43 +09:00
13 lines
385 B
Lua
13 lines
385 B
Lua
|
|
if mods['space-age'] then
|
|
for i=2, settings.startup['PHI-MB-ENERGY-POWER-TIER'].value do
|
|
if data.raw.recipe['accumulator-' .. i] then
|
|
data.raw.recipe['accumulator-' .. i].category = 'electronics'
|
|
end
|
|
|
|
if data.raw.recipe['solar-panel-' .. i] then
|
|
data.raw.recipe['solar-panel-' .. i].category = 'electronics'
|
|
end
|
|
end
|
|
end
|