Added fun commands to help

imgbot
kieranrobson 2022-05-10 12:25:45 +01:00
parent ec1c4fa170
commit 3a71fdcbb4
1 changed files with 14 additions and 1 deletions

View File

@ -18,8 +18,9 @@ module.exports = {
.setColor('GREEN') .setColor('GREEN')
.addField('❓`-help`','This Command', true) .addField('❓`-help`','This Command', true)
.addField('🎉`-help admin`','Displays Admin Commands!', true) .addField('🛠️`-help admin`','Displays Admin Commands!', true)
.addField(' `-help general`', 'Displays General Commands!', true) .addField(' `-help general`', 'Displays General Commands!', true)
.addField('🎉`-help fun`', 'Displays Fun Commands!', true)
message.channel.send({ embeds: [embed] }); message.channel.send({ embeds: [embed] });
} }
@ -42,6 +43,18 @@ module.exports = {
.addField('-links', 'Get all the links') .addField('-links', 'Get all the links')
message.channel.send({ embeds: [embed] });
}
if(args[0] === 'fun'){
const embed = new discord.MessageEmbed()
.setTitle("Fun Comamnds")
.setColor('GREEN')
.addField('-8ball', 'Answer your deepest questions.')
.addField('-gorb', 'guinea pig orb')
message.channel.send({ embeds: [embed] }); message.channel.send({ embeds: [embed] });
} }