From 0c8f80b5e19298f9e08f9f6a9a3ea0a18ea9bfae Mon Sep 17 00:00:00 2001 From: Nadyr <41974248+Darlantanis@users.noreply.github.com> Date: Tue, 19 Jul 2022 20:26:42 -0400 Subject: [PATCH] powder that makes you say yes --- code/modules/vore/resizing/resize_vr.dm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index 613f8b133f..f531ad05fe 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -278,13 +278,8 @@ // We need to be above a certain size ratio in order to do anything to the prey. // For DISARM and HURT intent, this is >=0.75, for GRAB it is >=0.5 -<<<<<<< HEAD - var/size_ratio = get_effective_size() - tmob.get_effective_size() - if((a_intent == I_GRAB || a_intent == I_DISARM) && size_ratio < 0.5) //CHOMPEDIT - more step changes -======= var/size_ratio = get_effective_size(FALSE) - tmob.get_effective_size(TRUE) - if(a_intent == I_GRAB && size_ratio < 0.5) ->>>>>>> dfffdf986a... Merge pull request #13321 from Heroman3003/frame-traits + if((a_intent == I_GRAB || a_intent == I_DISARM) && size_ratio < 0.5) //CHOMPEDIT - more step changes return FALSE if(a_intent == I_HURT && size_ratio < 0.75) return FALSE