Removes the entry in sound.dm for servostep.ogg (#2004)

This commit is contained in:
CitadelStationBot
2017-07-14 21:35:48 -05:00
committed by kevinz000
parent 6d4c97120f
commit bd3c3e9de4
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -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")
+1 -1
View File
@@ -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++