diff --git a/code/datums/mind.dm b/code/datums/mind.dm index dd389d46d4..3690de2c04 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -233,8 +233,9 @@ /datum/mind/proc/remove_rev() var/datum/antagonist/rev/rev = has_antag_datum(/datum/antagonist/rev) - remove_antag_datum(rev.type) - special_role = null + if(rev) + remove_antag_datum(rev.type) + special_role = null /datum/mind/proc/remove_antag_equip() var/list/Mob_Contents = current.get_contents()