diff --git a/public/assets/sounds/walk.mp3 b/public/assets/sounds/walk.mp3 deleted file mode 100644 index d7eb1a6..0000000 Binary files a/public/assets/sounds/walk.mp3 and /dev/null differ diff --git a/public/assets/sounds/walk.wav b/public/assets/sounds/walk.wav new file mode 100644 index 0000000..f7b188f Binary files /dev/null and b/public/assets/sounds/walk.wav differ diff --git a/src/components/game/character/Character.vue b/src/components/game/character/Character.vue index 20c33e3..d8281fe 100644 --- a/src/components/game/character/Character.vue +++ b/src/components/game/character/Character.vue @@ -68,9 +68,9 @@ watch( () => props.mapCharacter.isMoving, (newValue) => { if (newValue) { - playSound('/assets/sounds/walk.mp3', true, true) + playSound('/assets/sounds/walk.wav', true, true) } else { - stopSound('/assets/sounds/walk.mp3') + stopSound('/assets/sounds/walk.wav') } } )