mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-31 07:58:22 +01:00
*purrl (#17821)
This commit is contained in:
@@ -188,6 +188,14 @@
|
||||
viruses_to_return += D
|
||||
return viruses_to_return
|
||||
|
||||
/mob/proc/GetDormantDiseases()
|
||||
LAZYINITLIST(viruses)
|
||||
var/list/viruses_to_return = list()
|
||||
for(var/datum/disease/D in viruses)
|
||||
if(D.virus_modifiers & DORMANT)
|
||||
viruses_to_return += D
|
||||
return viruses_to_return
|
||||
|
||||
/mob/proc/GetResistances()
|
||||
LAZYINITLIST(resistances)
|
||||
return resistances
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
. = FALSE
|
||||
var/sickrisk = 1
|
||||
|
||||
if(isSynthetic() || species.virus_immune || HAS_TRAIT(src, STRONG_IMMUNITY_TRAIT)) // Don't bother
|
||||
if(isSynthetic() || HAS_TRAIT(src, STRONG_IMMUNITY_TRAIT)) // Don't bother
|
||||
return
|
||||
|
||||
switch(get_species())
|
||||
|
||||
Reference in New Issue
Block a user