From 99864b1bcd9d2eeabe02ec8703b95d5dd1f08746 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 21 Mar 2021 19:17:01 -0400 Subject: [PATCH] Fix --- commands/voice/animalese.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/voice/animalese.js b/commands/voice/animalese.js index ab084ce3..c62730c3 100644 --- a/commands/voice/animalese.js +++ b/commands/voice/animalese.js @@ -98,7 +98,7 @@ module.exports = class AnimaleseCommand extends Command { } } const wav = new WaveFile(); - wav.fromScratch(1, sampleFreq, '32', data); + wav.fromScratch(1, sampleFreq, '8', data); return Buffer.from(wav.toBuffer()); }