mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
3 lines
281 B
Plaintext
3 lines
281 B
Plaintext
#define is_thrall(M) (istype(M, /mob/living) && M.mind && M.mind.has_antag_datum(/datum/antagonist/thrall))
|
|
#define is_shadow(M) (istype(M, /mob/living) && M.mind && M.mind.has_antag_datum(/datum/antagonist/shadowling))
|
|
#define is_shadow_or_thrall(M) (is_thrall(M) || is_shadow(M)) |