This commit is contained in:
Fox-McCloud
2016-03-30 22:52:36 -04:00
parent 560eb17f9d
commit d2907e3631
2 changed files with 5 additions and 1 deletions
+2
View File
@@ -16,6 +16,8 @@
for(var/mob/living/carbon/human/H in shuffle(living_mob_list))
if(issmall(H)) //don't infect monkies; that's a waste
continue
if(H.species.virus_immune) //don't let virus immune things get diseases they're not supposed to get.
continue
var/turf/T = get_turf(H)
if(!T)
continue
@@ -1,6 +1,8 @@
/datum/event/spontaneous_appendicitis/start()
for(var/mob/living/carbon/human/H in shuffle(living_mob_list))
if(issmall(H)) //don't infect monkies; that's a waste
if(issmall(H)) //don't infect monkies; that's a waste.
continue
if(H.species.virus_immune) //don't count things that are virus immune; they'll just get picked and auto-cure
continue
var/foundAlready = 0 //don't infect someone that already has the virus
for(var/datum/disease/D in H.viruses)