diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/polarbear.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/polarbear.dm index 57b49047436..ba2752dd0e4 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/polarbear.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/polarbear.dm @@ -81,4 +81,9 @@ var/obj/item/I = user.get_active_held_item() if(!I) return + //SKYRAT EDIT START + if(istype(I, /obj/item/kinetic_gauntlet)) + var/obj/item/kinetic_gauntlet/gauntlet = I + gauntlet.next_attack = 0 //i hate this but i also don't know how else to implement this + //SKYRAT EDIT END I.melee_attack_chain(user, target, null)