From 80c153ddbefd5042616045131eee60462da14e00 Mon Sep 17 00:00:00 2001 From: Verkister Date: Mon, 5 Apr 2021 20:14:45 +0300 Subject: [PATCH] Fixes buckle-scoop jank -Fixes clicking on buckled mobs giving out the scoop failure error message regardless of the scoopability (such as same-size folks and such who wouldn't be able to scoop the target anyway) -Also fixes the said error message putting the scooper's name where the target's name ought to be. --- code/modules/vore/resizing/resize_vr.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index eb14ffb20eb..703706483f3 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -175,10 +175,10 @@ var/const/RESIZE_A_SMALLTINY = (RESIZE_SMALL + RESIZE_TINY) / 2 var/mob/living/simple_mob/SA = M if(!SA.has_hands) return 0 - if(buckled) - to_chat(usr,"You have to unbuckle \the [M] before you pick them up.") - return 0 if(size_diff >= 0.50 || mob_size < MOB_SMALL) + if(buckled) + to_chat(usr,"You have to unbuckle \the [src] before you pick them up.") + return 0 holder_type = /obj/item/weapon/holder/micro var/obj/item/weapon/holder/m_holder = get_scooped(M, G) holder_type = holder_default