Remove ghost join/leave notifications

This commit is contained in:
Raeschen
2023-02-26 01:18:42 +01:00
parent d1d10dcd7d
commit 52a70fe414
+6 -2
View File
@@ -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 <span class='name'>[name]</span> now [pick("skulks","lurks","prowls","creeps","stalks")] among the dead. [message]")
//say_dead_direct("The ghost of <span class='name'>[name]</span> now [pick("skulks","lurks","prowls","creeps","stalks")] among the dead. [message]") //ChompEDIT - Removed for ghost privacy
log_and_message_admins("<span class='name'>[name]</span> entered ghost/observe mode") //ChompEDIT
else
say_dead_direct("<span class='name'>[name]</span> no longer [pick("skulks","lurks","prowls","creeps","stalks")] in the realm of the dead. [message]")
//say_dead_direct("<span class='name'>[name]</span> no longer [pick("skulks","lurks","prowls","creeps","stalks")] in the realm of the dead. [message]") //ChompEDIT - Removed for ghost privacy
log_and_message_admins("<span class='name'>[name]</span> 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))