mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-18 18:44:48 +01:00
Changes the is_changeling and is_mindslave procs into proper defines (#25212)
* Changes these procs into proper defines * Henri review
This commit is contained in:
@@ -660,7 +660,7 @@ GLOBAL_VAR_INIT(nologevent, 0)
|
||||
antag_list += "Nuclear Operative"
|
||||
if(iswizard(M))
|
||||
antag_list += "Wizard"
|
||||
if(ischangeling(M))
|
||||
if(IS_CHANGELING(M))
|
||||
antag_list += "Changeling"
|
||||
if(M.mind in SSticker.mode.abductors)
|
||||
antag_list += "Abductor"
|
||||
@@ -670,7 +670,7 @@ GLOBAL_VAR_INIT(nologevent, 0)
|
||||
antag_list += "Vampire Thrall"
|
||||
if(M.mind.has_antag_datum(/datum/antagonist/traitor))
|
||||
antag_list += "Traitor"
|
||||
if(M.mind.has_antag_datum(/datum/antagonist/mindslave, FALSE))
|
||||
if(IS_MINDSLAVE(M))
|
||||
antag_list += "Mindslave"
|
||||
if(isrobot(M))
|
||||
var/mob/living/silicon/robot/R = M
|
||||
|
||||
Reference in New Issue
Block a user