diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 429a87ba58a..4345a4542d2 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -166,7 +166,10 @@ var/mob/living/M = loc if(M.a_intent in accepted_intents) - M.changeNext_move(click_speed_modifier) + if(istype(M.mind.martial_art, /datum/martial_art/cqc)) + M.changeNext_move(CLICK_CD_MELEE)//normal attack speed for hulk, CQC and Carp. + else + M.changeNext_move(click_speed_modifier) .= FALSE /obj/item/clothing/gloves/fingerless/rapid/admin