Infected Room Update (#8477)

This commit is contained in:
Guti
2024-06-03 16:36:19 +02:00
committed by GitHub
parent a0ff6fbb1b
commit bd7a30272a
5 changed files with 42 additions and 12 deletions
@@ -52,4 +52,12 @@
resistance += 10
if(GLOB.all_species.len)
affected_species = get_infectable_species()
affected_species = get_all_infectable_species()
/proc/get_all_infectable_species()
var/list/meat = list()
for (var/specie in GLOB.all_species)
var/datum/species/S = GLOB.all_species[specie]
if(!S.get_virus_immune())
meat += S
return meat