Fix buckle drag move lack of check for living.

Unfortunately fixes Iris's superstrength.
This commit is contained in:
Arokha Sieyes
2018-04-20 17:38:48 -04:00
parent fa8f21673c
commit 50cfcf0430
@@ -64,9 +64,11 @@
. = ..()
/mob/living/carbon/human/MouseDrop_T(var/atom/movable/C, mob/user)
if(user_buckle_mob(C, user, silent = TRUE))
visible_message("<span class='notice'>[C] starts riding [name]!</span>")
/mob/living/carbon/human/MouseDrop_T(mob/living/M, mob/living/user)
if(can_buckle && istype(M))
if(user_buckle_mob(M, user, silent = TRUE))
visible_message("<span class='notice'>[M] starts riding [name]!</span>")
return TRUE
/mob/living/carbon/human/attack_hand(mob/user as mob)
if(LAZYLEN(buckled_mobs))