mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-25 06:07:22 +01:00
Add purge nutrition verb to borgs (#7124)
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user