aboutsummaryrefslogtreecommitdiff
path: root/handler/command.js
diff options
context:
space:
mode:
Diffstat (limited to 'handler/command.js')
-rwxr-xr-xhandler/command.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/handler/command.js b/handler/command.js
index 2be1c92..1179701 100755
--- a/handler/command.js
+++ b/handler/command.js
@@ -41,6 +41,7 @@ const commandInfo = require('../commands/info');
const commandEval = require('../commands/eval');
const commandConfig = require('../commands/config');
const commandPony = require('../commands/pony');
+const commandColor = require('../commands/color');
const commandEpisode = require('../commands/episode');
const commandHelp = require('../commands/help');
@@ -112,6 +113,10 @@ module.exports = async (interaction) => {
await commandPony(interaction);
}
+ if (interaction.commandName === 'color') {
+ await commandColor(interaction);
+ }
+
if (interaction.commandName === 'episode') {
await commandEpisode(interaction);
}