diff --git a/assets/sounds/morse/dash.mp3 b/assets/sounds/morse/dash.mp3 new file mode 100644 index 00000000..2eac297d Binary files /dev/null and b/assets/sounds/morse/dash.mp3 differ diff --git a/assets/sounds/morse/dash.wav b/assets/sounds/morse/dash.wav deleted file mode 100644 index ba689adf..00000000 Binary files a/assets/sounds/morse/dash.wav and /dev/null differ diff --git a/assets/sounds/morse/dot.mp3 b/assets/sounds/morse/dot.mp3 new file mode 100644 index 00000000..03f739fa Binary files /dev/null and b/assets/sounds/morse/dot.mp3 differ diff --git a/assets/sounds/morse/dot.wav b/assets/sounds/morse/dot.wav deleted file mode 100644 index 7ed61024..00000000 Binary files a/assets/sounds/morse/dot.wav and /dev/null differ diff --git a/commands/voice/morse.js b/commands/voice/morse.js index d4797873..b7623767 100644 --- a/commands/voice/morse.js +++ b/commands/voice/morse.js @@ -45,12 +45,12 @@ module.exports = class MorseCommand extends Command { } const letter = letters[i]; if (letter === '.') { - connection.play(path.join(__dirname, '..', '..', 'sounds', 'morse', 'dot.wav')); + connection.play(path.join(__dirname, '..', '..', 'sounds', 'morse', 'dot.mp3')); await delay(1000); continue; } if (letter === '-') { - connection.play(path.join(__dirname, '..', '..', 'sounds', 'morse', 'dash.wav')); + connection.play(path.join(__dirname, '..', '..', 'sounds', 'morse', 'dash.mp3')); await delay(1000); continue; }