This commit is contained in:
2025-04-19 00:16:31 +09:00
parent 02774919cb
commit 8ad47a1673

View File

@@ -66,18 +66,35 @@ Selection.on_selection(SelectionName, function(event)
local tile_count = 0 local tile_count = 0
local tiles_to_make = {} local tiles_to_make = {}
for x = area.left_top.x, area.right_bottom.x do local chest = surface.find_entities_filtered{ area = area, name = "steel-chest", force = player.force }
for y = area.left_top.y, area.right_bottom.y do local tile_to_apply = (surface.planet and planet[surface.planet]) or "water-mud"
tile_count = tile_count + 1
tiles_to_make[tile_count] = { if #chest > 0 then
name = (surface.planet and planet[surface.planet]) or "water-mud", for _, v in pairs(chest) do
position = { x, y }, if v.get_inventory(defines.inventory.chest).is_empty() then
} tile_count = tile_count + 1
tiles_to_make[tile_count] = {
name = tile_to_apply,
position = { math.floor(v.position.x), math.floor(v.position.y) },
}
v.destroy()
end
end
else
for x = area.left_top.x, area.right_bottom.x do
for y = area.left_top.y, area.right_bottom.y do
tile_count = tile_count + 1
tiles_to_make[tile_count] = {
name = tile_to_apply,
position = { x, y },
}
end
end end
end end
surface.set_tiles(tiles_to_make, true, "abort_on_collision", true, false, player, 0) surface.set_tiles(tiles_to_make, true, "abort_on_collision", true, false, player, 0)
local remaining_tiles = surface.count_tiles_filtered{ area = area, name = (surface.planet and planet[surface.planet]) or "water-mud" } local remaining_tiles = surface.count_tiles_filtered{ area = area, name = tile_to_apply }
local t_diff = tile_count - remaining_tiles local t_diff = tile_count - remaining_tiles
if item_count_cliff >= t_diff then if item_count_cliff >= t_diff then