From 5b214ebab113b9f648adb833e3980eeac29ddd04 Mon Sep 17 00:00:00 2001 From: derpystuff <3515180-derpystuff@users.noreply.gitlab.com> Date: Tue, 11 Oct 2022 16:59:08 +0200 Subject: [PATCH] remove typing from undo --- commands/message/core/undo.js | 1 - 1 file changed, 1 deletion(-) diff --git a/commands/message/core/undo.js b/commands/message/core/undo.js index 4ff4d94..aa1a904 100644 --- a/commands/message/core/undo.js +++ b/commands/message/core/undo.js @@ -13,7 +13,6 @@ module.exports = { }, run: async (context, args) => { try{ - context.triggerTyping(); if(typeof(args.amount) == "string") args.amount = parseInt(args.amount) if(!args.amount) args.amount = 1 if(args.amount >= 6 || args.amount <= 0) return await editOrReply(context, {embeds:[createEmbed("warning", context, "Invalid Argument (amount)")]})