From 2367ca8558e2f88f85f0735c0ce3df758caf783b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 7 Apr 2023 06:05:34 +0200 Subject: [PATCH] [MIRROR] Fixes typo in Goliath sprite path [MDB IGNORE] (#20387) * Fixes typo in Goliath sprite path (#74542) ## About The Pull Request Fixes wrong icon state for Goliath tentacles ## Why It's Good For The Game ## Changelog :cl: fix: fixed missing Goliath tentacles icons /:cl: * Fixes typo in Goliath sprite path --------- Co-authored-by: FinancialGoose <92416224+TheBoondock@users.noreply.github.com> --- .../mob/living/simple_animal/hostile/mining_mobs/goliath.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm index 1bf01eed225..d9d8ebb5289 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm @@ -212,7 +212,7 @@ new /obj/effect/temp_visual/goliath_tentacle(T, spawner) /obj/effect/temp_visual/goliath_tentacle/proc/tripanim() - icon_state = "Goliath_tentacle_wiggle" + icon_state = "goliath_tentacle_wiggle" deltimer(timerid) timerid = addtimer(CALLBACK(src, PROC_REF(trip)), 3, TIMER_STOPPABLE) @@ -232,7 +232,7 @@ timerid = addtimer(CALLBACK(src, PROC_REF(retract)), 10, TIMER_STOPPABLE) /obj/effect/temp_visual/goliath_tentacle/proc/retract() - icon_state = "Goliath_tentacle_retract" + icon_state = "goliath_tentacle_retract" deltimer(timerid) timerid = QDEL_IN(src, 7)