From e2a7ab7b8b39ce7aaeac8d93f0216beb67406654 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Tue, 26 Aug 2025 06:56:04 +0900 Subject: [PATCH] Fix no spawn force without players joining (#400) --- 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 568fa0af..8caeae56 100644 --- a/exp_legacy/module/modules/addons/spawn-area.lua +++ b/exp_legacy/module/modules/addons/spawn-area.lua @@ -205,6 +205,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) then + get_spawn_force() + end spawn_turrets() end) end