From f60b1c0e4338d4f3354dde203a4321c4fdd5e58f Mon Sep 17 00:00:00 2001 From: Catboy Date: Thu, 12 Aug 2021 14:43:40 -0500 Subject: [PATCH] Oops added an underscore to BOT TOKEN --- examples/applicationCommands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/applicationCommands.js b/examples/applicationCommands.js index 48ce0c397..7fdaaac71 100644 --- a/examples/applicationCommands.js +++ b/examples/applicationCommands.js @@ -3,7 +3,7 @@ const Eris = require("eris"); const Constants = Eris.Constants; // Replace TOKEN with your bot account's token -const bot = new Eris("BOT_TOKEN", { +const bot = new Eris("BOT TOKEN", { intents: [] //No intents are needed for interactions, but you still need to specify either an empty array or 0 });