From 76523c01303a710632be3f06dc36f87451942b4b Mon Sep 17 00:00:00 2001 From: Ceikry Date: Fri, 3 Jul 2026 11:08:00 +0000 Subject: [PATCH] Item respawn time logic now handles unset min/max times --- Server/src/main/core/game/system/config/GroundSpawnLoader.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/src/main/core/game/system/config/GroundSpawnLoader.kt b/Server/src/main/core/game/system/config/GroundSpawnLoader.kt index cbf5dabc9..d57ac9031 100644 --- a/Server/src/main/core/game/system/config/GroundSpawnLoader.kt +++ b/Server/src/main/core/game/system/config/GroundSpawnLoader.kt @@ -67,6 +67,7 @@ class GroundSpawnLoader { * Method used to initialize this spawn. */ fun init(): GroundItem { + if (respawnRate shr 16 == 0) respawnRate = respawnRate or (respawnRate shl 16) return GroundItemManager.create(this) }