From 50cfcf04305a61fff5eef46d932b606531565dd7 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Fri, 20 Apr 2018 13:26:04 -0400 Subject: [PATCH] Fix buckle drag move lack of check for living. Unfortunately fixes Iris's superstrength. --- .../modules/vore/appearance/sprite_accessories_taur_vr.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm index de528fb2f8..c6801e3a0e 100644 --- a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm +++ b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm @@ -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("[C] starts riding [name]!") +/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("[M] starts riding [name]!") + return TRUE /mob/living/carbon/human/attack_hand(mob/user as mob) if(LAZYLEN(buckled_mobs))