mirror of
https://github.com/Wyrrrd/Gun_Turret_Alerts.git
synced 2026-07-18 04:32:24 +02:00
Compare commits
2
Commits
v2.0.2
..
e99c0e0505
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e99c0e0505 | ||
|
|
3c86e315f4 |
@@ -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
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Gun_Turret_Alerts",
|
"name": "Gun_Turret_Alerts",
|
||||||
"version": "2.0.2",
|
"version": "2.0.3",
|
||||||
"title": "Ammo Alerts",
|
"title": "Ammo Alerts",
|
||||||
"author": "Wyrrrd",
|
"author": "Wyrrrd",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
|
|||||||
@@ -24,3 +24,8 @@ message-low=__1__ hat wenig Munition
|
|||||||
[virtual-signal-name]
|
[virtual-signal-name]
|
||||||
ammo-icon-red=Hat keine Munition
|
ammo-icon-red=Hat keine Munition
|
||||||
ammo-icon-yellow=Hat wenig Munition
|
ammo-icon-yellow=Hat wenig Munition
|
||||||
|
|
||||||
|
[mod-name]
|
||||||
|
|
||||||
|
[mod-description]
|
||||||
|
|
||||||
|
|||||||
@@ -24,3 +24,8 @@ message-low=__1__ peu de munitions
|
|||||||
[virtual-signal-name]
|
[virtual-signal-name]
|
||||||
ammo-icon-red=Signal d'absence de munition
|
ammo-icon-red=Signal d'absence de munition
|
||||||
ammo-icon-yellow=Signal de manque de munitions
|
ammo-icon-yellow=Signal de manque de munitions
|
||||||
|
|
||||||
|
[mod-name]
|
||||||
|
|
||||||
|
[mod-description]
|
||||||
|
|
||||||
|
|||||||
@@ -24,3 +24,8 @@ message-low=__1__ мало боєприпасів
|
|||||||
[virtual-signal-name]
|
[virtual-signal-name]
|
||||||
ammo-icon-red=Сигнал про закінчення набоїв
|
ammo-icon-red=Сигнал про закінчення набоїв
|
||||||
ammo-icon-yellow=Сигнал про низький рівень набоїв
|
ammo-icon-yellow=Сигнал про низький рівень набоїв
|
||||||
|
|
||||||
|
[mod-name]
|
||||||
|
|
||||||
|
[mod-description]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user