Merge pull request #1856 from Cyantime/emotes

Fixes ghosts being unable to see any emotes
This commit is contained in:
Spades
2017-07-19 12:22:54 -04:00
committed by GitHub
+1 -1
View File
@@ -41,7 +41,7 @@
//VOREStation edit
if(istype(M, /mob/observer/dead/))
var/mob/observer/dead/D = M
if((ckey && D.is_preference_enabled(/datum/client_preference/ghost_sight)) || src in view(D))
if(ckey || (src in view(D)))
M.show_message(message, m_type)
else
M.show_message(message, m_type)