From fd5d48b68de47110abbbca28115eb907714e73e3 Mon Sep 17 00:00:00 2001 From: Seth Scherer Date: Wed, 22 Dec 2021 19:23:40 -0500 Subject: [PATCH] Non-headrev revs can be properly revived after a revolution is quelled again(#63543) --- code/modules/antagonists/revolution/revolution.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/revolution/revolution.dm b/code/modules/antagonists/revolution/revolution.dm index a2f6613749e..4351e740593 100644 --- a/code/modules/antagonists/revolution/revolution.dm +++ b/code/modules/antagonists/revolution/revolution.dm @@ -431,7 +431,7 @@ if (. == STATION_VICTORY) // If the revolution was quelled, make rev heads unable to be revived through pods - for (var/datum/mind/rev_head as anything in ex_revs) + for (var/datum/mind/rev_head as anything in ex_headrevs) ADD_TRAIT(rev_head.current, TRAIT_DEFIB_BLACKLISTED, REF(src)) rev_head.current.med_hud_set_status()