From c66c29c5966237c465e6fe0f80ec76b3260bca42 Mon Sep 17 00:00:00 2001 From: SatinIsle <98125273+SatinIsle@users.noreply.github.com> Date: Mon, 12 May 2025 14:26:15 +0100 Subject: [PATCH] Fixes micros picking themselves up (#17698) Fixes micros being able to pick themselves up. --- code/modules/vore/resizing/resize_vr.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index fcdc0a9d580..997ad26b88f 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -191,6 +191,8 @@ * @return false if normal code should continue, 1 to prevent normal code. */ /mob/living/proc/attempt_to_scoop(mob/living/M, mob/living/G, ignore_size = FALSE) //second one is for the Grabber, only exists for animals to self-grab + if(src == M) + return 0 if(!(pickup_pref && M.pickup_pref && M.pickup_active)) return 0 if(!(M.a_intent == I_HELP))