From 9e64cab0dbb29c6ec76b4de3100da171816aecb8 Mon Sep 17 00:00:00 2001 From: Majkl-J <49160555+Majkl-J@users.noreply.github.com> Date: Sun, 20 Oct 2024 02:58:23 -0700 Subject: [PATCH] Readds missed gauntlet line --- .../living/simple_animal/hostile/mining_mobs/polarbear.dm | 5 +++++ 1 file changed, 5 insertions(+) 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)