From 28efb3c5a7e4cd58f0ed4aa3bf9e6f64d60e25b7 Mon Sep 17 00:00:00 2001 From: ceikry Date: Sat, 1 Jan 2022 14:52:32 -0600 Subject: [PATCH] Fixed global kill counter initialization --- Server/src/main/kotlin/rs09/Server.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Server/src/main/kotlin/rs09/Server.kt b/Server/src/main/kotlin/rs09/Server.kt index f6ace5dd6..d1b647ca7 100644 --- a/Server/src/main/kotlin/rs09/Server.kt +++ b/Server/src/main/kotlin/rs09/Server.kt @@ -13,6 +13,7 @@ import core.plugin.CorePluginTypes.StartupPlugin import kotlinx.coroutines.GlobalScope import kotlinx.coroutines.delay import kotlinx.coroutines.launch +import rs09.game.content.global.GlobalKillCounter import rs09.game.node.entity.state.newsys.StateRepository import rs09.game.system.SystemLogger import rs09.game.system.config.ConfigParser @@ -107,6 +108,7 @@ object Server { ZoneBuilder.init() ServerStore.init() RareDropTable.init() + GlobalKillCounter.init() if(World.settings!!.enable_bots) { ImmerseWorld.init() }