From 08eb57fd3485e770771f33d4d6bc62e11b185631 Mon Sep 17 00:00:00 2001 From: cuberound Date: Tue, 23 Jun 2026 15:19:33 +0200 Subject: [PATCH 1/2] toung removal --- code/game/sound.dm | 2 +- .../living/simple_animal/hostile/retaliate/bortrough.dm | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/code/game/sound.dm b/code/game/sound.dm index a7ba7cbbd9a8..e81f0490ba09 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -448,7 +448,7 @@ if("giant_lizard_hiss") sound = pick('sound/effects/giant_lizard_hiss1.ogg', 'sound/effects/giant_lizard_hiss2.ogg') if("bortrough_hiss") - sound = pick('sound/effect/bortrough-hurt.ogg') + sound = pick('sound/effect/bortrough_hurt.ogg') if("evo_screech") sound = pick('sound/voice/alien_echoroar_1.ogg', 'sound/voice/alien_echoroar_2.ogg', 'sound/voice/alien_echoroar_3.ogg') if("wy_droid_pain") diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/bortrough.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/bortrough.dm index 1a0781aef142..6e9a33d65270 100644 --- a/code/modules/mob/living/simple_animal/hostile/retaliate/bortrough.dm +++ b/code/modules/mob/living/simple_animal/hostile/retaliate/bortrough.dm @@ -18,6 +18,13 @@ pixel_x = -22 var/pulling_state = "Bortrough Running Open Jaws" +/mob/living/simple_animal/hostile/retaliate/giant_lizard/bortrough/Initialize() + . = ..() + qdel(tongue_icon_holder) + +/mob/living/simple_animal/hostile/retaliate/giant_lizard/bortrough/change_tongue_offset() + return + /mob/living/simple_animal/hostile/retaliate/giant_lizard/bortrough/ListTargets(dist = 4) . = ..() From ff2c0e0c2f87256e88846a2fe8fb63d2a7a7297f Mon Sep 17 00:00:00 2001 From: cuberound Date: Tue, 23 Jun 2026 15:19:57 +0200 Subject: [PATCH 2/2] hurth fixed again --- code/game/sound.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/sound.dm b/code/game/sound.dm index e81f0490ba09..c0944a18621d 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -448,7 +448,7 @@ if("giant_lizard_hiss") sound = pick('sound/effects/giant_lizard_hiss1.ogg', 'sound/effects/giant_lizard_hiss2.ogg') if("bortrough_hiss") - sound = pick('sound/effect/bortrough_hurt.ogg') + sound = pick('sound/effects/bortrough-hurt.ogg') if("evo_screech") sound = pick('sound/voice/alien_echoroar_1.ogg', 'sound/voice/alien_echoroar_2.ogg', 'sound/voice/alien_echoroar_3.ogg') if("wy_droid_pain")