Initial Commit

This commit is contained in:
Artur
2020-02-13 20:51:52 +02:00
parent 821496e67c
commit 7964d768fa
92 changed files with 136 additions and 123 deletions
@@ -770,7 +770,7 @@
..()
if(!istype(H))
return
if(!H.dna || !H.dna.species || !(MOB_ORGANIC in H.mob_biotypes))
if(!H.dna || !H.dna.species || !(H.mob_biotypes & MOB_ORGANIC))
return
if(isjellyperson(H))
@@ -260,7 +260,7 @@
/datum/reagent/toxin/pestkiller/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
..()
if(MOB_BUG in M.mob_biotypes)
if(M.mob_biotypes & MOB_BUG)
var/damage = min(round(0.4*reac_volume, 0.1),10)
M.adjustToxLoss(damage)