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 613be94 commit 78f90ce
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 @@ -63,7 +63,7 @@
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)
if(HAS_FLAG(affected.status, ORGAN_DEAD))
to_chat(SPAN_NOTICE("You mend some necrosis from their [affected]."))
affected.status &= ~ORGAN_DEAD
user.visible_message(SPAN_NOTICE("[user] raises their palm from [H]."), SPAN_NOTICE("You raise your palm, having finished your work."))

0 comments on commit 78f90ce

Please sign in to comment.