From 52a70fe414388febb12cc642dc0c42f8a1da71ed Mon Sep 17 00:00:00 2001 From: Raeschen Date: Sun, 26 Feb 2023 01:18:42 +0100 Subject: [PATCH] Remove ghost join/leave notifications --- code/modules/mob/mob_helpers.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 0a4e270ed6..7aee776ae9 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -481,9 +481,13 @@ var/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HURT) if(!name) name = (C.holder && C.holder.fakekey) ? C.holder.fakekey : C.key if(joined_ghosts) - say_dead_direct("The ghost of [name] now [pick("skulks","lurks","prowls","creeps","stalks")] among the dead. [message]") + //say_dead_direct("The ghost of [name] now [pick("skulks","lurks","prowls","creeps","stalks")] among the dead. [message]") //ChompEDIT - Removed for ghost privacy + log_and_message_admins("[name] entered ghost/observe mode") //ChompEDIT + else - say_dead_direct("[name] no longer [pick("skulks","lurks","prowls","creeps","stalks")] in the realm of the dead. [message]") + //say_dead_direct("[name] no longer [pick("skulks","lurks","prowls","creeps","stalks")] in the realm of the dead. [message]") //ChompEDIT - Removed for ghost privacy + log_and_message_admins("[name] left ghost/observe mode") //ChompEDIT + /mob/proc/switch_to_camera(var/obj/machinery/camera/C) if (!C.can_use() || stat || (get_dist(C, src) > 1 || machine != src || blinded || !canmove))