Feeding works! aaaaayyy. Didn't have to martial art it either

This commit is contained in:
Poojawa
2019-03-27 03:18:41 -05:00
parent b11e3bbc96
commit 8d84299d6d
6 changed files with 51 additions and 18 deletions
@@ -43,8 +43,6 @@ mob/living/carbon/proc/toggle_vore_mode()
if(combatmode)
return FALSE //let's not override the main draw of the game these days
voremode = !voremode
if(client)
client.show_popup_menus = !voremode // it's the RIGHT way to nom. gettit
if(hud_used && hud_used.static_inventory)
for(var/obj/screen/voretoggle/selector in hud_used.static_inventory)
selector.rebaseintomygut(src)
@@ -1,6 +1,6 @@
/mob/living/carbon/human/grabbedby(mob/living/carbon/user, supress_message = 0)
if(user == src && pulling && !pulling.anchored && grab_state >= GRAB_AGGRESSIVE && isliving(pulling))
vore_attack(user, pulling)
vore_attack(user, pulling, user) //feeding prey to self
else
..()