Skip to content

Commit

Permalink
defines
Browse files Browse the repository at this point in the history
  • Loading branch information
BeagleGaming1 committed Aug 6, 2023
1 parent 068af00 commit e6c2e75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/reagents/chemistry_properties/prop_positive.dm
Original file line number Diff line number Diff line change
Expand Up @@ -517,15 +517,15 @@
if(!ishuman(current_mob))
return
var/mob/living/carbon/human/current_human = current_mob
var/stabilized_damage = level * 5
var/stabilized_damage = level * POTENCY_MULTIPLIER_VHIGH
for(var/datum/internal_organ/organ in current_human.internal_organs)
if(organ.damage <= stabilized_damage)
organ.stabilized = TRUE
else
organ.stabilized = FALSE

/datum/chem_property/positive/organstabilize/process_overdose(mob/living/current_mob, potency = 1, delta_time)
current_mob.apply_damage(0.5 * potency * delta_time, BRUTE)
current_mob.apply_damage(POTENCY_MULTIPLIER_LOW * potency * delta_time, BRUTE)

/datum/chem_property/positive/organstabilize/process_critical(mob/living/current_mob, potency = 1)
current_mob.apply_damages(POTENCY_MULTIPLIER_HIGH * potency, POTENCY_MULTIPLIER_HIGH * potency, POTENCY_MULTIPLIER_HIGH * potency)
Expand Down

0 comments on commit e6c2e75

Please sign in to comment.