Merge pull request #14849 from SabreML/more-cult-stuff-v1

Cult fixes the 2nd
This commit is contained in:
AffectedArc07
2020-11-15 21:54:44 +00:00
committed by GitHub
8 changed files with 30 additions and 33 deletions
+5 -5
View File
@@ -47,11 +47,11 @@
return istype(M) && M.player_logged && M.stat != DEAD
/proc/isAntag(A)
if(istype(A, /mob/living/carbon))
var/mob/living/carbon/C = A
if(C.mind && C.mind.special_role)
return 1
return 0
if(isliving(A))
var/mob/living/L = A
if(L.mind?.special_role)
return TRUE
return FALSE
/proc/isNonCrewAntag(A)
if(!isAntag(A))