Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Mar 21, 2024
1 parent dee964d commit 74ea241
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/modules/borer/borer_chemicals.dm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
name = "Neuroshock"
id = "borershock"
description = "A biosynthetic nerve agent that stimulates cardiomyocytes in critical condition."
properties = list(PROPERTY_CROSSMETABOLIZING = 2, PROPERTY_DEFIBRILLATING = 1, PROPERTY_INTRAVENOUS = 1)
properties = list(PROPERTY_CROSSMETABOLIZING = 2, PROPERTY_DEFIBRILLATING = 2, PROPERTY_INTRAVENOUS = 1)

/datum/reagent/borer/transformative
name = "Biomend"
Expand Down
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 @@ -604,9 +604,9 @@
dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, TOX)
dead.apply_damage(-potency * POTENCY_MULTIPLIER_LOW, CLONE)
if(dead.health < HEALTH_THRESHOLD_DEAD)
return
return TRUE
if(!COOLDOWN_FINISHED(src, ghost_notif))
return
return TRUE
var/mob/dead/observer/ghost = dead.get_ghost()
if(ghost?.client)
COOLDOWN_START(src, ghost_notif, 30 SECONDS)
Expand Down

0 comments on commit 74ea241

Please sign in to comment.