Add purge nutrition verb to borgs (#7124)

This commit is contained in:
TheGreatKitsune
2023-10-24 21:20:19 -04:00
committed by GitHub
parent 7f1a89c8be
commit c2498a6a4f
2 changed files with 11 additions and 0 deletions
@@ -0,0 +1,10 @@
/mob/living/silicon/robot/verb/purge_nutrition()
set name = "Purge Nutrition"
set category = "IC"
set desc = "Allows you to clear out your nutrition if needed."
if (stat != CONSCIOUS)
return
nutrition = 0
to_chat(src, "<span class='warning'>You have purged the nutrition lingering in your systems.</span>")
return TRUE