From e3c4be4fea59bd5375bb58ae1edb61682ba46eb9 Mon Sep 17 00:00:00 2001 From: nex Date: Thu, 16 Mar 2023 23:58:18 +0000 Subject: [PATCH] lower min speed --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index 6915d37..cf3fc28 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -825,7 +825,7 @@ class OtherCog(commands.Cog): ) ): """Converts text to MP3. 5 uses per 10 minutes.""" - speed = min(300, max(100, speed)) + speed = min(300, max(50, speed)) _bot = self.bot class TextModal(discord.ui.Modal): def __init__(self):