From 00d7ccb6317fb6434c99a9cdf6fe89dcc323cb8b Mon Sep 17 00:00:00 2001 From: Braeden Sowinski Date: Fri, 30 Sep 2022 13:32:21 -0700 Subject: [PATCH] update color --- commands/help.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/help.js b/commands/help.js index 8c8d247..e170eb5 100644 --- a/commands/help.js +++ b/commands/help.js @@ -1,4 +1,4 @@ -const { EmbedBuilder } = require("discord.js"); +const { EmbedBuilder, ButtonStyle } = require("discord.js"); module.exports = { name: "help", @@ -59,7 +59,7 @@ module.exports = { let embed = new EmbedBuilder() .setAuthor({ name: `Command: ${cmd.name}`, iconURL: client.config.IconURL }) .setDescription(cmd.description) - .setColor("GREEN") + .setColor(ButtonStyle.Success) // Green .addFields({ name: "Usage", value: `\`/${cmd.name}${cmd.usage ? " " + cmd.usage : ""}\``,