This commit is contained in:
2026-06-02 18:23:37 +09:00
parent 7ba91be808
commit bce689db70
+14 -12
View File
@@ -503,23 +503,25 @@ if data.raw['proxy-container'] and data.raw['proxy-container']['proxy-container'
data.raw['proxy-container']['proxy-container'].draw_inventory_content = false data.raw['proxy-container']['proxy-container'].draw_inventory_content = false
end end
-- MIG C 12 BASE ENTITY -- MIG C 13 BASE ENTITY
-- MIG C 5 SPACE_AGE ENTITY -- MIG C 5 SPACE_AGE ENTITY
for _, w in pairs({data.raw['storage-tank'], data.raw['generator'], data.raw['furnace'], data.raw['assembling-machine']}) do for _, w in pairs({'storage-tank', 'generator', 'furnace', 'roboport', 'assembling-machine'}) do
for _, v in pairs(w) do if data.raw[w] then
v.heating_energy = nil for _, v in pairs(data.raw[w]) do
v.heating_energy = nil
end
end end
end end
-- MIG C 1 BASE ENTITY -- 1 ENTITY FROM ABOVE
for _, v in pairs(data.raw['roboport']) do -- MIG C 0 BASE ENTITY
v.heating_energy = nil
v.charging_station_count_affected_by_quality = true
end
-- MIG C 1 BASE ARMOR_EQUIPMENT -- MIG C 1 BASE ARMOR_EQUIPMENT
for _, v in pairs(data.raw['roboport-equipment']) do for _, w in pairs({'roboport', 'roboport-equipment'}) do
v.charging_station_count_affected_by_quality = true if data.raw[w] then
for _, v in pairs(data.raw[w]) do
v.charging_station_count_affected_by_quality = true
end
end
end end
-- MIG C 1 SPAGE_AGE ENTITY -- MIG C 1 SPAGE_AGE ENTITY