Fixes buckled drones dropping the stuff they're holding in their hands.

This commit is contained in:
phil235
2015-07-16 16:44:42 +02:00
parent ac174ac475
commit 87cea3c58c
@@ -487,10 +487,12 @@
..()
/mob/living/simple_animal/update_canmove()
if(paralysis || stunned || weakened || stat || resting || buckled)
if(paralysis || stunned || weakened || stat || resting)
drop_r_hand()
drop_l_hand()
canmove = 0
else if(buckled)
canmove = 0
else
canmove = 1
update_transform()