Skip to content

Commit 45f5093

Browse files
authored
Increase move step sound repeat delay
1 parent 3b722f3 commit 45f5093

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

www/assets/js/SoundRepository.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ export class SoundRepository {
3030
#getSoundName(type, item, playerId, surface, playerSpectateId, tickId) {
3131
if (type === SoundType.PLAYER_STEP) {
3232
if (playerId === playerSpectateId) {
33-
if (tickId > this.#lastSpectatorMoveSoundTick + msToTick(200)) {
33+
if (tickId > this.#lastSpectatorMoveSoundTick + msToTick(400)) {
3434
this.#lastSpectatorMoveSoundTick = tickId
3535
return '422990__dkiller2204__sfxrunground1.wav'
3636
}
3737
return null
3838
}
39-
if (tickId > this.#lastOtherPlayerMoveSoundTick + msToTick(150)) {
39+
if (tickId > this.#lastOtherPlayerMoveSoundTick + msToTick(300)) {
4040
this.#lastOtherPlayerMoveSoundTick = tickId
4141
return '221626__moodpie__body-impact.wav'
4242
}

0 commit comments

Comments
 (0)