Skip to content

Commit

Permalink
Spotcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
Incoming5643 authored Jun 18, 2016
1 parent e33dd6d commit 6ad190d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/carbon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -782,11 +782,11 @@
..()

/mob/living/carbon/adjustToxLoss(amount, updating_health=1)
if(TOXINLOVER in dna.species.specflags) //damage becomes healing and healing becomes damage
if(has_dna() && TOXINLOVER in dna.species.specflags) //damage becomes healing and healing becomes damage
amount = -amount
if(amount > 0)
blood_volume -= 5*amount
else
blood_volume -= amount
..()
return ..()

0 comments on commit 6ad190d

Please sign in to comment.