aboutsummaryrefslogtreecommitdiff
path: root/bot/src/commands/info.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot/src/commands/info.js')
-rw-r--r--bot/src/commands/info.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/src/commands/info.js b/bot/src/commands/info.js
index e9de440..64d8f7a 100644
--- a/bot/src/commands/info.js
+++ b/bot/src/commands/info.js
@@ -1,5 +1,6 @@
import { SlashCommandBuilder, EmbedBuilder, version } from 'discord.js';
import { hostname, platform, release } from 'os';
+import { abEmbedColour } from '../storage/consts.js';
export default {
data: new SlashCommandBuilder()
@@ -15,7 +16,7 @@ export default {
{ name: 'OS Platform: ', value: platform(), inline: true },
{ name: 'OS Version: ', value: release(), inline: true }
)
- .setColor('#1fd619');
+ .setColor(abEmbedColour);
return await interaction.reply({ embeds: [embed] });
}
};