diff --git a/code/game/sound.dm b/code/game/sound.dm index 50db27e932..3cbe2893b7 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -124,8 +124,6 @@ soundin = pick('sound/effects/clownstep1.ogg','sound/effects/clownstep2.ogg') if ("suitstep") soundin = pick('sound/effects/suitstep1.ogg','sound/effects/suitstep2.ogg') - if ("servostep") - soundin = pick('sound/effects/servostep.ogg') if ("swing_hit") soundin = pick('sound/weapons/genhit1.ogg', 'sound/weapons/genhit2.ogg', 'sound/weapons/genhit3.ogg') if ("hiss") diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index ab5bf9e375..b446943ee4 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -567,7 +567,7 @@ if(!istype(H) || H.wear_suit != src) return if(footstep > 1) - playsound(src, "servostep", 100, 1) + playsound(src, 'sound/effects/servostep.ogg', 100, 1) footstep = 0 else footstep++