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 9170195 commit a8192af
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 @@ -39,7 +39,7 @@
if(O.damage > 0) // Fix internal damage
to_chat(SPAN_NOTICE("You mend their [O]'s bruising."))
O.heal_damage(O.damage)
if(O.status & ORGAN_BROKEN)
if(HAS_FLAG(O.status, ORGAN_BROKEN))
to_chat(SPAN_NOTICE("You restart their [O]'s functionality."))
O.status &= ~ORGAN_BROKEN
if(O.damage <= 5 && O.organ_tag == BP_EYES) // Fix eyes
Expand Down

0 comments on commit a8192af

Please sign in to comment.