From 3a85a3777f5ba805167415a209a1df19e9355aa7 Mon Sep 17 00:00:00 2001 From: Incoming Date: Tue, 1 Dec 2015 23:05:35 -0500 Subject: [PATCH] Spares those in critical from the mass mindshuffle event. This was always the intention, but past me made a mistake I know I've made and fixed sense: He assumed that living_mob_list was a list of !stat mobs, when really it was a list of stat != 2 mobs --- code/modules/events/wizard/shuffle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/events/wizard/shuffle.dm b/code/modules/events/wizard/shuffle.dm index 5597be83c7f..1e7052961e8 100644 --- a/code/modules/events/wizard/shuffle.dm +++ b/code/modules/events/wizard/shuffle.dm @@ -77,7 +77,7 @@ var/list/mobs = list() for(var/mob/living/carbon/human/H in living_mob_list) - if(!H.mind || H.mind in ticker.mode.wizards) continue //the wizard(s) are spared on this one + if(!H.stat || !H.mind || H.mind in ticker.mode.wizards) continue //the wizard(s) are spared on this one mobs += H if(!mobs) return