Merge pull request #2647 from VOREStation/aro-deadchat

Fix admin deadchat
This commit is contained in:
Arokha Sieyes
2017-12-28 19:10:19 -05:00
committed by GitHub
+1 -1
View File
@@ -400,7 +400,7 @@ proc/is_blind(A)
return // Can't talk in deadchat if you can't see it.
for(var/mob/M in player_list)
if(M.client && (!istype(M, /mob/new_player) && M.stat == DEAD) && M.is_preference_enabled(/datum/client_preference/show_dsay))
if(M.client && ((!istype(M, /mob/new_player) && M.stat == DEAD) || M.client.holder) && M.is_preference_enabled(/datum/client_preference/show_dsay)) //VOREStation Edit - Why'd you make it so admins can't see deadchat?
var/follow
var/lname
if(M.forbid_seeing_deadchat && !M.client.holder)