Fixes the travis issues

Fixes the travis issues, Exo still remains a mystery
This commit is contained in:
keronshb
2020-02-20 19:11:04 -05:00
parent 4ca9eb4171
commit 7a1bc9d22b
2 changed files with 2 additions and 2 deletions
@@ -136,7 +136,7 @@
return
var/update = FALSE
for(var/obj/item/bodypart/L in parts)
if(L.heal_damage(1.5/parts.len, 1.5/parts.len, only_robotic = TRUE, only_organic = FALSE)) //much faster than organic healing
if(L.heal_damage(1.5/parts.len, 1.5/parts.len, null, TRUE, FALSE)) //much faster than organic healing
update = TRUE
if(update)
host_mob.update_damage_overlays()
@@ -241,7 +241,7 @@
for(var/mob/living/L in oview(5, host_mob))
if(!prob(25))
continue
if(!(MOB_ORGANIC in L.mob_biotypes) && !(MOB_UNDEAD in L.mob_biotypes))
if(!(L.mob_biotypes & (MOB_ORGANIC|MOB_UNDEAD)))
continue
target_hosts += L
if(!target_hosts.len)