From b4de052df229919ccf517d26b474bed91aa395ff Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Sun, 12 Nov 2023 13:02:45 -0600 Subject: [PATCH] fixes reactive frost armor shooting at ghosts (#23237) --- code/modules/clothing/suits/armor_suits.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/suits/armor_suits.dm b/code/modules/clothing/suits/armor_suits.dm index 096be172ed5..d4328ed99b6 100644 --- a/code/modules/clothing/suits/armor_suits.dm +++ b/code/modules/clothing/suits/armor_suits.dm @@ -537,7 +537,7 @@ if(reaction_check(hitby) && use_power()) owner.visible_message("[src] blocks [attack_text], sending out freezing bolts!") - for(var/mob/M in oview(get_turf(src), 7)) + for(var/mob/living/M in oview(get_turf(src), 7)) shootAt(M) if(prob(10)) //rarely vent gasses