diff --git a/README.md b/README.md index 7d8d18a..4769181 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Feel free to contact me with suggestions and feature requests - if you need a ne 3. Open a terminal in cloned/extracted folder 4. Run `npm install` and wait for it to finish 5. Edit *config.json* to include your RSS feed and channel ID -6. Create *botConfig.json* to include your bot token: +6. Create *bot-config.json* to include your bot token: `{ "token": "abc123blahblahblahyourtokengoeshere" }` diff --git a/feed-bot.js b/feed-bot.js index 9bddad3..91dead3 100644 --- a/feed-bot.js +++ b/feed-bot.js @@ -3,7 +3,7 @@ var Url = require("url"); //for url parsing var Uri = require("urijs"); //for finding urls within message strings var Discord = require("discord.io"); //for obvious reasons var FeedRead = require("feed-read"); //for rss feed reading -var BotConfig = require("./botConfig.json"); //bot config file containing bot token +var BotConfig = require("./bot-config.json"); //bot config file containing bot token var Config = require("./config.json"); //config file containing other settings var log = require("./log.js"); //some very simple logging functions I made