remove absorbed form virus lists

-> Absorbed are ignored in greater and lesser virus selection
-> Absorb can no longer ba event infected
This commit is contained in:
Kashargul
2023-11-22 22:04:04 +01:00
committed by GitHub
parent 118591f471
commit cc8a9254e4
3 changed files with 4 additions and 4 deletions
@@ -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))
if(H.client && !H.isSynthetic() && H.stat != DEAD && !player_is_antag(H.mind) && !H.absorbed)
candidates += H
candidates = shuffle(candidates)