Removes now redundant face_at checks, allows observers to face.

Was initially an attempt to fix lying mobs being unable to change facing to but https://github.com/Baystation12/Baystation12/blob/master/code/modules/mob/mob.dm#L764 complicates this.
This commit is contained in:
PsiOmega
2014-12-12 12:56:50 +01:00
parent 4cbfbe4bfa
commit 4eb1eb5abc
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -338,7 +338,7 @@
is_buckled = 1
else
is_buckled = 0
if( is_buckled || !A || !x || !y || !A.x || !A.y || (stat && !isobserver(src))) return
if(!A || !x || !y || !A.x || !A.y) return
var/dx = A.x - x
var/dy = A.y - y
if(!dx && !dy) return
@@ -605,3 +605,6 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
src << "<span class='info'>Your key won't be shown when you speak in dead chat.</span>"
else
src << "<span class='info'>Your key will be publicly visible again.</span>"
/mob/dead/observer/canface()
return 1