From 6df40ac157baa80fea4d2365f0fdfc8eb2d765a7 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Mon, 25 Aug 2025 16:28:41 +0900 Subject: [PATCH] . --- exp_legacy/module/modules/addons/spawn-area.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/exp_legacy/module/modules/addons/spawn-area.lua b/exp_legacy/module/modules/addons/spawn-area.lua index 9ed8755f..31c13482 100644 --- a/exp_legacy/module/modules/addons/spawn-area.lua +++ b/exp_legacy/module/modules/addons/spawn-area.lua @@ -194,6 +194,9 @@ end if config.turrets.enabled then Event.on_nth_tick(config.turrets.refill_time, function() if game.tick < 10 then return end + if game.tick < (config.turrets.refill_time + 10) and (not game.forces["spawn"] or game.forces["spawn"].valid) then + game.create_force("spawn") + end spawn_turrets() end) end