diff --git a/game/src/main/kotlin/org/openrs2/game/GameServer.kt b/game/src/main/kotlin/org/openrs2/game/GameServer.kt index 6e481d54..37468d93 100644 --- a/game/src/main/kotlin/org/openrs2/game/GameServer.kt +++ b/game/src/main/kotlin/org/openrs2/game/GameServer.kt @@ -13,7 +13,7 @@ public class GameServer @Inject constructor( private val serviceManager = ServiceManager(services) public fun run(start: Long) { - val shutdownHook = Thread(::stop) + val shutdownHook = Thread(::stop, "ShutdownHook") serviceManager.startAsync() runtime.addShutdownHook(shutdownHook)