mirror of
https://github.com/Wyrrrd/Gun_Turret_Alerts.git
synced 2026-06-07 09:40:20 +02:00
Fix crash on invalid entity
This commit is contained in:
@@ -1,4 +1,9 @@
|
|||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
Version: 2.0.3
|
||||||
|
Date: 2024-11-08
|
||||||
|
Bugfixes:
|
||||||
|
- Fixed crash on invalid entity
|
||||||
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.0.2
|
Version: 2.0.2
|
||||||
Date: 2024-11-08
|
Date: 2024-11-08
|
||||||
Changes:
|
Changes:
|
||||||
|
|||||||
+2
-4
@@ -170,7 +170,7 @@ local function generate_alerts()
|
|||||||
local ammo_entities = storage.ammo_entities[player.surface.name.."_"..player.force.name]
|
local ammo_entities = storage.ammo_entities[player.surface.name.."_"..player.force.name]
|
||||||
|
|
||||||
if ammo_entities then
|
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.valid then
|
||||||
if entity.force == player.force then
|
if entity.force == player.force then
|
||||||
|
|
||||||
@@ -213,9 +213,7 @@ local function generate_alerts()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
local param = {}
|
ammo_entities[index] = nil
|
||||||
param.entity = entity
|
|
||||||
remove_entity_from_list(param)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user