From df3eebbcae01301e4de621a19a75238a47ae32b3 Mon Sep 17 00:00:00 2001 From: killer653 Date: Thu, 3 Aug 2017 19:58:40 -0400 Subject: [PATCH] Allows admins to write in blood --- code/modules/mob/dead/observer/observer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index cfdf5b864a..89a92f7c49 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -584,8 +584,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(cult.current_antagonists.len > config.cult_ghostwriter_req_cultists) ghosts_can_write = 1 - if(!ghosts_can_write) - src << "\red The veil is not thin enough for you to do that." + if(!ghosts_can_write && !check_rights(R_ADMIN)) //Let's allow for admins to write in blood for events and the such. + src << "The veil is not thin enough for you to do that." return var/list/choices = list()