Small hemophilia fix (#17051)

* STOP BLEEDING 

YOU'RE ALREADY DEAD

* Update slash.dm
This commit is contained in:
Mqiib
2022-12-15 17:43:49 -05:00
committed by GitHub
parent cc1f834f1b
commit 304465b351
2 changed files with 2 additions and 2 deletions

View File

@@ -64,7 +64,7 @@
if(prob(5))
to_chat(victim, span_notice("You feel the [lowertext(name)] in your [limb.name] firming up from the cold!"))
if(HAS_TRAIT(victim, TRAIT_BLOODY_MESS))
if(HAS_TRAIT(victim, TRAIT_BLOODY_MESS) && (victim.stat != DEAD))
blood_flow += 0.5 // old heparin used to just add +2 bleed stacks per tick, this adds 0.5 bleed flow to all open cuts which is probably even stronger as long as you can cut them first
if(limb.current_gauze)

View File

@@ -102,7 +102,7 @@
blood_flow = min(blood_flow, WOUND_SLASH_MAX_BLOODFLOW)
if(HAS_TRAIT(victim, TRAIT_BLOODY_MESS))
if(HAS_TRAIT(victim, TRAIT_BLOODY_MESS) && (victim.stat != DEAD))
blood_flow += 0.5 // old heparin used to just add +2 bleed stacks per tick, this adds 0.5 bleed flow to all open cuts which is probably even stronger as long as you can cut them first
if(limb.current_gauze)
if(clot_rate > 0)