From cdc8e8afa1374beaf1e99576bcad10b33963d115 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 4 Apr 2024 23:21:52 -0400 Subject: [PATCH] Fix --- 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 56c463f8..6826cb32 100644 --- a/commands/voice/morse.js +++ b/commands/voice/morse.js @@ -79,7 +79,7 @@ module.exports = class MorseCommand extends Command { if (i > dashSamples) { data[(currentIndex * dashSamples) + i] = 127; } else { - const libIndex = this.library[44 + dashSamples + i]; + const libIndex = this.library[44 + dotSamples + i]; data[(currentIndex * dashSamples) + i] = libIndex; } }