Skip to content

Commit

Permalink
reviv
Browse files Browse the repository at this point in the history
  • Loading branch information
kiVts committed Oct 5, 2023
1 parent 08f5bc8 commit f67ceb1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions code/modules/reagents/chemistry_properties/prop_positive.dm
Original file line number Diff line number Diff line change
Expand Up @@ -585,12 +585,11 @@
dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, BURN)
dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, TOX)
dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, CLONE)
if(potency > 2) //heal more if higher levels
if(potency > CREATE_MAX_TIER_1) //heal more if higher levels
dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, BRUTE)
dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, BURN)
dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, TOX)
dead.apply_damage(-potency * POTENCY_MULTIPLIER_VLOW, CLONE)
dead.apply_damage(-dead.getOxyLoss(), OXY)
if(dead.health > HEALTH_THRESHOLD_DEAD)
var/mob/dead/observer/ghost = dead.get_ghost()
if(ghost?.client)
Expand Down

0 comments on commit f67ceb1

Please sign in to comment.