From 9a1453127c9c8f9c421904c90ba0ecd619777819 Mon Sep 17 00:00:00 2001 From: KieranRobson Date: Mon, 27 Jun 2022 07:06:44 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Added=20missing=20commands=20to?= =?UTF-8?q?=20help?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commands/general/help.js | 3 +++ commands/general/{linktree.js => link.js} | 0 2 files changed, 3 insertions(+) rename commands/general/{linktree.js => link.js} (100%) diff --git a/commands/general/help.js b/commands/general/help.js index 8b07b3f..302b831 100644 --- a/commands/general/help.js +++ b/commands/general/help.js @@ -29,6 +29,8 @@ module.exports = { const embed = new discord.MessageEmbed() .setTitle("Admin Commands") .setColor('GREEN') + + message.channel.send({ embeds: [embed] }); } @@ -54,6 +56,7 @@ module.exports = { .addField('!8ball', 'Answer your deepest questions.') .addField('!gorb', 'guinea pig orb') + .addField('!torch', 'Light the way') message.channel.send({ embeds: [embed] }); } diff --git a/commands/general/linktree.js b/commands/general/link.js similarity index 100% rename from commands/general/linktree.js rename to commands/general/link.js