From 4b597e3f89d8b8eacddd25df50626fa40e2195c5 Mon Sep 17 00:00:00 2001 From: Guti <32563288+TheCaramelion@users.noreply.github.com> Date: Sun, 4 Feb 2024 20:05:43 +0100 Subject: [PATCH] Virusfix (#7686) --- code/modules/gamemaster/event2/events/medical/virus.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/gamemaster/event2/events/medical/virus.dm b/code/modules/gamemaster/event2/events/medical/virus.dm index 2b3ada5cf9..d658e79ba9 100644 --- a/code/modules/gamemaster/event2/events/medical/virus.dm +++ b/code/modules/gamemaster/event2/events/medical/virus.dm @@ -44,7 +44,7 @@ /datum/event2/event/virus/set_up() for(var/mob/living/carbon/human/H in player_list) - if(H.client && !H.isSynthetic() && H.stat != DEAD && !player_is_antag(H.mind) && !isbelly(H.loc)) + if(H.client && !H.isSynthetic() && H.stat != DEAD && !player_is_antag(H.mind) && !isbelly(H.loc) && !H.species.get_virus_immune(H)) // CHOMPEdit - Make sure they're not immune candidates += H candidates = shuffle(candidates)