From 684b3779b859c8576f33a2c4a3e35171f034a347 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 4 Apr 2024 10:14:48 -0400 Subject: [PATCH] Faster --- commands/voice/morse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/voice/morse.js b/commands/voice/morse.js index 47026c83..b9df4195 100644 --- a/commands/voice/morse.js +++ b/commands/voice/morse.js @@ -46,7 +46,7 @@ module.exports = class MorseCommand extends Command { continue; } const letter = letters[i]; - const timeUnit = 250; + const timeUnit = 180; if (letter === '.') { connection.play(path.join(__dirname, '..', '..', 'assets', 'sounds', 'morse', 'dot.mp3')); await delay(timeUnit);