Adds check to keep observers from being recognized as servants of ratvar (#36800)

* Comments out code to try to fix a bug

* fixes servant ghosts being trapped on Reebe

* protip: next time don't commit to master

* ghosts no longer count as servants

* Undoes ghost check, moved to is_servant_of_ratvar

* change istype to isliving
This commit is contained in:
AlexTheSysop42
2018-03-30 12:06:03 -04:00
committed by CitadelStationBot
parent f61c73d486
commit 360eb223b3
+1 -1
View File
@@ -45,7 +45,7 @@ Credit where due:
///////////
/proc/is_servant_of_ratvar(mob/M)
return istype(M) && M.mind && M.mind.has_antag_datum(/datum/antagonist/clockcult)
return isliving(M) && M.mind && M.mind.has_antag_datum(/datum/antagonist/clockcult)
/proc/is_eligible_servant(mob/M)
if(!istype(M))