From fee76f5b0eb8c21ada6cd86bd1c97005e4116d79 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Sun, 17 Oct 2021 10:03:40 -0400 Subject: [PATCH] localy cached --- code/modules/events/wizard/ghost.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/events/wizard/ghost.dm b/code/modules/events/wizard/ghost.dm index 8c3daf00bba..e703799ff02 100644 --- a/code/modules/events/wizard/ghost.dm +++ b/code/modules/events/wizard/ghost.dm @@ -8,6 +8,7 @@ /datum/event/wizard/ghost_mute/start() GLOB.dsay_enabled = FALSE + var/sound/S = sound('sound/hallucinations/wail.ogg') for(var/mob/dead/observer/silenced in GLOB.player_list) to_chat(silenced, "Magical forces wrap around your spectral form. You can no longer speak to other ghosts!") - SEND_SOUND(silenced, 'sound/hallucinations/wail.ogg') + SEND_SOUND(silenced, S)