This commit is contained in:
2025-02-07 02:25:40 +09:00
parent a933eec9e3
commit fb2a409d4c

View File

@@ -41,7 +41,7 @@ local function check_entity(entity)
end end
if not entity.minable then if not entity.minable then
-- if it is minable -- if it is not minable
return true return true
end end
@@ -85,7 +85,7 @@ local function chest_check(entity)
end end
end end
if check_entity(target) then if not check_entity(target) then
table.insert(miner_data.queue, { t = game.tick + 10, e = target }) table.insert(miner_data.queue, { t = game.tick + 10, e = target })
end end
end end
@@ -161,27 +161,27 @@ Event.add(defines.events.on_resource_depleted, function(event)
return return
end end
local entities = event.entity.surface.find_entities_filtered{ area = { { event.entity.position.x - 1, event.entity.position.y - 1 }, { event.entity.position.x + 1, event.entity.position.y + 1 } }, type = "mining-drill" } local resource = event.entity
local drills = resource.surface.find_entities_filtered{ type = "mining-drill" }
if #entities == 0 then for _, entity in pairs(drills) do
return local radius = entity.prototype.mining_drill_radius
end local dx = math.abs(entity.position.x - resource.position.x)
local dy = math.abs(entity.position.y - resource.position.y)
for _, entity in pairs(entities) do if dx <= radius and dy <= radius then
if ((math.abs(entity.position.x - event.entity.position.x) < entity.prototype.mining_drill_radius) and (math.abs(entity.position.y - event.entity.position.y) < entity.prototype.mining_drill_radius)) then
miner_check(entity) miner_check(entity)
end end
end end
end) end)
Event.on_nth_tick(10, function(event) Event.on_nth_tick(10, function(event)
for k, q in pairs(miner_data.queue) do for i = #miner_data.queue, 1, -1 do
local q = miner_data.queue[i]
if not q.e or not q.e.valid then if not q.e or not q.e.valid then
table.remove(miner_data.queue, k) table.remove(miner_data.queue, i)
break
elseif event.tick >= q.t then elseif event.tick >= q.t then
q.e.order_deconstruction(q.e.force) q.e.order_deconstruction(q.e.force)
table.remove(miner_data.queue, k) table.remove(miner_data.queue, i)
end end
end end
end) end)