Updated bot-config file name to follow convention

This commit is contained in:
benji7425 2016-12-02 00:57:37 +00:00
parent e46dc34df7
commit de65f9b720
2 changed files with 2 additions and 2 deletions

View File

@ -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"
}`

View File

@ -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