Skip to content

Commit

Permalink
Update code/modules/psionics/abilities/mend.dm
Browse files Browse the repository at this point in the history
Co-authored-by: Fluffy <[email protected]>
  • Loading branch information
NonQueueingMatt and FluffyGhoster authored Jul 28, 2023
1 parent a8192af commit 613be94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/psionics/abilities/mend.dm
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
if((affected.damage < affected.min_broken_damage * config.organ_health_multiplier) && (affected.status & ORGAN_BROKEN))
to_chat(SPAN_NOTICE("You mend their [affected] together."))
affected.status &= ~ORGAN_BROKEN
if(affected.status & ORGAN_ARTERY_CUT)
if(HAS_FLAG(affected.status, ORGAN_ARTERY_CUT))
to_chat(SPAN_NOTICE("You mend a spliced artery in their [affected]."))
affected.status &= ~ORGAN_ARTERY_CUT
if(affected.status & ORGAN_DEAD)
Expand Down

0 comments on commit 613be94

Please sign in to comment.