Merge pull request #3624 from Tastyfish/i-have-no-mouth-and-i-must-fork

Stops utensils from working on mouthless humanoids.
This commit is contained in:
Fox McCloud
2016-02-18 13:36:55 -05:00
4 changed files with 14 additions and 3 deletions
@@ -50,6 +50,11 @@
return ..()
if (reagents.total_volume > 0)
// Mouthless people cannot eat
if(!M.can_eat())
user << "<span class=warning>[M] cannot eat with a fork!</span>"
return
if(M == user)
M.visible_message("<span class='notice'>\The [user] eats some [loaded] from \the [src].</span>")
reagents.trans_to(M, reagents.total_volume)