ifdk anymore

This commit is contained in:
Dragon Fire
2024-04-04 01:01:28 -04:00
parent 5df8aa6bed
commit e5d0ab77d4
5 changed files with 2 additions and 2 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+2 -2
View File
@@ -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;
}