From 83ff6c4ffbf34e6e29ec00568e236419065a6bd9 Mon Sep 17 00:00:00 2001 From: Matt Atlas Date: Sun, 20 Oct 2024 20:22:16 +0200 Subject: [PATCH] fixes --- code/modules/mob/abstract/ghost/storyteller/storyteller.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/abstract/ghost/storyteller/storyteller.dm b/code/modules/mob/abstract/ghost/storyteller/storyteller.dm index e3d7b853989..eb0fb63f32c 100644 --- a/code/modules/mob/abstract/ghost/storyteller/storyteller.dm +++ b/code/modules/mob/abstract/ghost/storyteller/storyteller.dm @@ -21,6 +21,7 @@ /mob/abstract/ghost/storyteller/Destroy() SSodyssey.remove_storyteller(src) GLOB.storytellers.remove_antagonist(mind) + SSghostroles.remove_spawn_atom("storyteller", src) return ..() /mob/abstract/ghost/storyteller/LateLogin() @@ -35,6 +36,7 @@ mind.current = src real_name = "Storyteller ([client.ckey])" + name = "Storyteller ([client.ckey])" SSodyssey.add_storyteller(src) GLOB.storytellers.add_antagonist(mind)