This commit is contained in:
Guti
2024-02-04 20:05:43 +01:00
committed by GitHub
parent f35b590723
commit 4b597e3f89

View File

@@ -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)