From c1eb3475716d29899ad3768e3237c59261165664 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Fri, 23 Dec 2022 14:38:35 +0100 Subject: [PATCH] feat: removed word limit on megamind to crazy --- commands/fun/megamind.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/commands/fun/megamind.ts b/commands/fun/megamind.ts index fecd39a..c7a5414 100644 --- a/commands/fun/megamind.ts +++ b/commands/fun/megamind.ts @@ -24,7 +24,6 @@ export default commandModule({ ], execute: async (ctx, options) => { const option = options[1].getString('texto', true) - if (option.length > 15) return await ctx.reply({content: `El texto es muy largo, intenta que sea menor que 15 caracteres.`, ephemeral: true}) await ctx.reply({content: 'Cargando...'}) @@ -53,4 +52,4 @@ export default commandModule({ files: [attachment] }) }, -}); \ No newline at end of file +});