diff options
Diffstat (limited to 'handler/command.js')
-rwxr-xr-x | handler/command.js | 5 |
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);
}
|