1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-04-17 11:46:41 +02:00

Mtn v3 - switched zone walls force from player to neutral

This commit is contained in:
Gerkiz 2022-06-09 00:07:40 +02:00
parent bd3aaeb131
commit 8bbe5278a1

View File

@ -347,7 +347,7 @@ local function wall(p, data)
entities[#entities + 1] = { entities[#entities + 1] = {
name = 'stone-wall', name = 'stone-wall',
position = p, position = p,
force = 'player', force = 'neutral',
callback = stone_wall callback = stone_wall
} }
if not alert_zone_1 and data.y >= -zone_settings.zone_depth then if not alert_zone_1 and data.y >= -zone_settings.zone_depth then
@ -402,7 +402,7 @@ local function wall(p, data)
entities[#entities + 1] = { entities[#entities + 1] = {
name = 'stone-wall', name = 'stone-wall',
position = p, position = p,
force = 'player', force = 'neutral',
callback = stone_wall callback = stone_wall
} }
end end