diff --git a/commands/voice/morse.js b/commands/voice/morse.js index b7623767..baccd350 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.mp3')); + connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', 'morse', 'dot.mp3')); await delay(1000); continue; } if (letter === '-') { - connection.play(path.join(__dirname, '..', '..', 'sounds', 'morse', 'dash.mp3')); + connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', 'morse', 'dash.mp3')); await delay(1000); continue; }