From 95702b6ea94c28164cd544e96622f6c6dea29924 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Wed, 6 Dec 2023 13:36:43 +0100 Subject: [PATCH] Say: Do not remove the original command --- commands/misc/say.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/commands/misc/say.js b/commands/misc/say.js index 69fd0a4..e8ca4e6 100644 --- a/commands/misc/say.js +++ b/commands/misc/say.js @@ -7,11 +7,6 @@ module.exports = { message.channel.send("Can't send empty message"); else{ message.channel.send(args.join(" ")) - try{ - message.delete() - }catch{ - console.log(this.name, ": An error happened while trying to delete the original message.\nProbably because of permissions.") - } } }