diff --git a/.eslintrc.yml b/.eslintrc.yml index 2e3163d87..4db6bea8d 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -88,4 +88,3 @@ rules: custom-inspect-method: - name: "[util.inspect.custom]" type: method - diff --git a/README.md b/README.md index 77d25e515..b3e5731c6 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,12 @@ Ping Pong Example ```js const Eris = require("eris"); -var bot = new Eris("Bot TOKEN"); // Replace TOKEN with your bot account's token +const bot = new Eris("Bot TOKEN", { + intents: [ + "guildMessages" + ] +}); bot.on("ready", () => { // When the bot is ready console.log("Ready!"); // Log "Ready!"