From 360eb223b35ee4242610366d0a22de67a3f71c3e Mon Sep 17 00:00:00 2001 From: AlexTheSysop42 Date: Fri, 30 Mar 2018 12:06:03 -0400 Subject: [PATCH] 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 --- code/game/gamemodes/clock_cult/clock_cult.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/gamemodes/clock_cult/clock_cult.dm b/code/game/gamemodes/clock_cult/clock_cult.dm index bd6a8bf77d..603829a2d0 100644 --- a/code/game/gamemodes/clock_cult/clock_cult.dm +++ b/code/game/gamemodes/clock_cult/clock_cult.dm @@ -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))