1
0
mirror of https://github.com/Wyrrrd/Gun_Turret_Alerts.git synced 2026-04-17 19:24:52 +02:00

Fix crash on invalid entity

This commit is contained in:
Wyrrrd
2024-11-09 00:01:41 +01:00
parent 3c2316878a
commit 3c86e315f4
3 changed files with 8 additions and 5 deletions

View File

@@ -170,7 +170,7 @@ local function generate_alerts()
local ammo_entities = storage.ammo_entities[player.surface.name.."_"..player.force.name]
if ammo_entities then
for _,entity in pairs(ammo_entities) do
for index,entity in pairs(ammo_entities) do
if entity.valid then
if entity.force == player.force then
@@ -213,9 +213,7 @@ local function generate_alerts()
end
end
else
local param = {}
param.entity = entity
remove_entity_from_list(param)
ammo_entities[index] = nil
end
end
end