From 52f27cb4f7247e2557db8d295da73b2d08797ca7 Mon Sep 17 00:00:00 2001 From: Guti <32563288+TheCaramelion@users.noreply.github.com> Date: Tue, 30 Jul 2024 04:23:05 +0200 Subject: [PATCH] Step Element runtime fix (#8708) --- modular_chomp/code/datums/elements/footstep.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_chomp/code/datums/elements/footstep.dm b/modular_chomp/code/datums/elements/footstep.dm index 5110587b2b..eeef602a87 100644 --- a/modular_chomp/code/datums/elements/footstep.dm +++ b/modular_chomp/code/datums/elements/footstep.dm @@ -43,8 +43,6 @@ footstep_ret = GLOB.lightclawfootstep if(FOOTSTEP_MOB_CLAW) footstep_ret = GLOB.clawfootstep - if(FOOTSTEP_MOB_BAREFOOT) - footstep_ret = GLOB.barefootstep if(FOOTSTEP_MOB_HEAVY) footstep_ret = GLOB.heavyfootstep if(FOOTSTEP_MOB_SHOE) @@ -53,6 +51,8 @@ footstep_ret = 'modular_chomp/sound/effects/footstep/slime1.ogg' if(FOOTSTEP_MOB_SLITHER) footstep_ret = 'modular_chomp/sound/effects/footstep/crawl1.ogg' + else + footstep_ret = GLOB.barefootstep return footstep_ret /datum/element/footstep/Detach(atom/movable/source)