From 099d26ce6a7ee67310d95c75cd19db3c9943813f Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Fri, 1 May 2020 20:48:47 -0400 Subject: [PATCH] Fix #7577 --- code/modules/vore/resizing/holder_micro_vr.dm | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/code/modules/vore/resizing/holder_micro_vr.dm b/code/modules/vore/resizing/holder_micro_vr.dm index aa22fdd55b4..1675e506a9d 100644 --- a/code/modules/vore/resizing/holder_micro_vr.dm +++ b/code/modules/vore/resizing/holder_micro_vr.dm @@ -26,16 +26,12 @@ /obj/item/weapon/holder/micro/attack_self(mob/living/carbon/user) //reworked so it works w/ nonhumans for(var/L in contents) - if(ishuman(L) && user.checkClickCooldown()) // These canClicks() are repeated here to make sure users can't avoid the click delay + if(ishuman(L)) var/mob/living/carbon/human/H = L H.help_shake_act(user) - user.setClickCooldown(user.get_attack_speed()) //uses the same cooldown as regular attack_hand - return - if(isanimal(L) && user.checkClickCooldown()) + if(isanimal(L)) var/mob/living/simple_mob/S = L user.visible_message("[user] [S.response_help] \the [S].") - user.setClickCooldown(user.get_attack_speed()) - /obj/item/weapon/holder/micro/update_state() if(isturf(loc) || !held_mob || held_mob.loc != src)