mirror of
https://github.com/PHIDIAS0303/factorio-mod-PHI.git
synced 2026-05-12 21:08:43 +09:00
.
This commit is contained in:
@@ -32,6 +32,29 @@ for _, t in pairs({data.raw['cargo-wagon'], data.raw['fluid-wagon']}) do
|
||||
end
|
||||
end
|
||||
|
||||
-- MI C 1 BASE ENTITY
|
||||
for _, v in pairs(data.raw['lamp']) do
|
||||
if v.light and v.light.color then
|
||||
v.light.color = {1, 1, 1}
|
||||
end
|
||||
|
||||
if v.light_when_colored then
|
||||
v.light_when_colored.color = {1, 1, 1}
|
||||
end
|
||||
end
|
||||
|
||||
-- MI C 1 BASE ENTITY
|
||||
for _, v in pairs(data.raw['land-mine']) do
|
||||
if v.flags then
|
||||
for fk, fv in ipairs(v.flags) do
|
||||
if fv == 'placeable-off-grid' then
|
||||
table.remove(v.flags, fk)
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- MI C 1 BASE ENTITY
|
||||
for _, v in pairs(data.raw['locomotive']) do
|
||||
v.reversing_power_modifier = 1
|
||||
|
||||
Reference in New Issue
Block a user