From 474455140f31b1bcf9b50e5fad0d1a5c084127f6 Mon Sep 17 00:00:00 2001 From: Verkister Date: Fri, 22 May 2020 03:44:02 +0300 Subject: [PATCH] Fixes micro holder hug spam. This is why we can't have nice things. --- code/modules/vore/resizing/holder_micro_vr.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/vore/resizing/holder_micro_vr.dm b/code/modules/vore/resizing/holder_micro_vr.dm index 1675e506a9d..9ebcc0c837a 100644 --- a/code/modules/vore/resizing/holder_micro_vr.dm +++ b/code/modules/vore/resizing/holder_micro_vr.dm @@ -25,6 +25,7 @@ O.show_inv(usr) /obj/item/weapon/holder/micro/attack_self(mob/living/carbon/user) //reworked so it works w/ nonhumans + user.setClickCooldown(user.get_attack_speed()) for(var/L in contents) if(ishuman(L)) var/mob/living/carbon/human/H = L @@ -46,4 +47,4 @@ /obj/item/weapon/holder/micro/sync(var/mob/living/M) ..() for(var/mob/living/carbon/human/I in contents) - item_state = lowertext(I.species.name) \ No newline at end of file + item_state = lowertext(I.species.name)