mob/living/Life() now handles processing grabs.

This commit is contained in:
PsiOmegaDelta
2015-06-17 15:41:25 +02:00
parent 225ed82c1c
commit b98d64b668
2 changed files with 3 additions and 4 deletions

View File

@@ -100,10 +100,6 @@
pulse = handle_pulse()
// Grabbing
for(var/obj/item/weapon/grab/G in src)
G.process()
/mob/living/carbon/human/breathe()
if(!in_stasis)
..()

View File

@@ -40,6 +40,9 @@
update_pulling()
for(var/obj/item/weapon/grab/G in src)
G.process()
update_canmove()
/mob/living/proc/handle_breathing()