From 2cea86248a6915b559521fb66a90ff95ec8e2d63 Mon Sep 17 00:00:00 2001 From: kieranrobson Date: Fri, 13 May 2022 19:35:32 +0100 Subject: [PATCH] Added help gorb --- commands/general/help.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/commands/general/help.js b/commands/general/help.js index a21609c..fe796a6 100644 --- a/commands/general/help.js +++ b/commands/general/help.js @@ -21,6 +21,7 @@ module.exports = { .addField('🛠ī¸`-help admin`','Displays Admin Commands!', true) .addField('ℹī¸ `-help general`', 'Displays General Commands!', true) .addField('🎉`-help fun`', 'Displays Fun Commands!', true) + .addField('-help gorb', 'Displays Gorb Commands', true) message.channel.send({ embeds: [embed] }); } @@ -28,7 +29,6 @@ module.exports = { const embed = new discord.MessageEmbed() .setTitle("Admin Commands") .setColor('GREEN') - message.channel.send({ embeds: [embed] }); } @@ -53,11 +53,26 @@ module.exports = { .addField('-8ball', 'Answer your deepest questions.') .addField('-gorb', 'guinea pig orb') + message.channel.send({ embeds: [embed] }); + } + + if(args[0] === 'gorbb'){ + const embed = new discord.MessageEmbed() + .setTitle("Fun Comamnds") + .setColor('GREEN') + .setDescription("All commands are followed by `-gorb` ") + .addField('-gorb cs', 'CS Gorb') + .addField('-gorb party', 'Party Gorb') + .addField('-gorb christmas', 'Christmas Gorb' + .addField('-gorb storm', 'Storm Gorb') + ) message.channel.send({ embeds: [embed] }); } + + } }