Skip to content

Commit

Permalink
Merge pull request #2547 from FuzzyFuzlet/lickstats
Browse files Browse the repository at this point in the history
lick counter!
  • Loading branch information
Tk420634 authored Jun 24, 2023
2 parents 36cb285 + 9aa8ca7 commit 5af6bc6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions code/modules/mob/living/carbon/carbon.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1481,3 +1481,11 @@
*/
/mob/living/carbon/proc/get_biological_state()
return BIO_FLESH_BONE

/mob/living/carbon/get_status_tab_items()
. = ..()
if(HAS_TRAIT(src, TRAIT_HEAL_TOUCH) || HAS_TRAIT(src, TRAIT_HEAL_TONGUE) || HAS_TRAIT(src, TRAIT_HEAL_TEND))
. += ""
. += "Healing Charges: [FLOOR(heal_reservoir, 1)]"


0 comments on commit 5af6bc6

Please sign in to comment.