Skip to content

Commit

Permalink
fira
Browse files Browse the repository at this point in the history
  • Loading branch information
Zonespace27 committed Dec 26, 2023
1 parent b58bed3 commit 2d729df
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions code/datums/effects/bleeding.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
/datum/effects/bleeding/Destroy()
if(limb)
SEND_SIGNAL(limb, COMSIG_LIMB_STOP_BLEEDING, TRUE, FALSE)
limb.bleeding_effects_list -= src
limb = null
return ..()

/datum/effects/bleeding/validate_atom(atom/A)
Expand Down Expand Up @@ -53,13 +55,6 @@
duration += damage * (blood_duration_multiplier / BLOOD_ADD_PENALTY)
blood_loss += damage / (blood_loss_divider * BLOOD_ADD_PENALTY) //Make the first hit count, adding on bleeding has a penalty

/datum/effects/bleeding/Destroy()
if(limb)
limb.bleeding_effects_list -= src
limb = null
return ..()


/datum/effects/bleeding/external
var/buffer_blood_loss = 0

Expand Down

0 comments on commit 2d729df

Please sign in to comment.