From bd3c3e9de41e3280d80e60d91d851c77e395d001 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 14 Jul 2017 21:35:48 -0500 Subject: [PATCH] Removes the entry in sound.dm for servostep.ogg (#2004) --- code/game/sound.dm | 2 -- code/modules/clothing/spacesuits/hardsuit.dm | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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++