Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Remco authored and Remco committed Jan 3, 2016
1 parent c9e1faf commit 5b9bf3e
Show file tree
Hide file tree
Showing 7 changed files with 125 additions and 99 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2.0.0-beta.3
Fixed `giphy.js` not having requires.
Fixed `suffix` not behaving accordingly.
Added `++fortunecow`, `++randomcat`, `++rule34` and `++leetspeak`.
Added `mashape_key` to `config.json`.
Removed NSFW flags from commands that did not need them, as this will cause problems with `++help`.
Removed `deletion.js`, as this is needlessly split.

## 2.0.0-beta.2
Updated `versionchecker.js` to check for beta updates.
Moved to double prefix activation instead of single prefix activation as requested by Discord API, we recommend using `++`.
Expand Down
2 changes: 1 addition & 1 deletion DougBot.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ bot.on("message", function(msg) {
var step = msg.content.substr(2);
var chunks = step.split(" ");
var command = chunks[0];
var suffix = msg.content.substring(command.length + 2);
var suffix = msg.content.substring(command.length + 3);
if (command === "help"){
Commands.help.fn(bot, msg, suffix);
return;
Expand Down
1 change: 1 addition & 0 deletions config.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"log_chat": false,
"youtube_api_key": "Create one here: https://console.developers.google.com",
"google_custom_search": "https://github.com/SteamingMutt/DougleyBot/wiki/CSE",
"mashape_key": "https://market.mashape.com/dashboard",
"permissions": {
"masterUser": "Master user Discord ID",
"level1": "Global level 1 user Discord ID",
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "DougleyBot",
"version": "2.0.0-beta.2",
"version": "2.0.0-beta.3",
"description": "A Discord bot",
"readme": "README.md",
"maintainers": ["Perpetucake"],
Expand All @@ -17,8 +17,10 @@
"request": "^2.61.0",
"ws": "^0.8.0",
"xml2js": "*",
"leetspeak": "*",
"imgflipper": "*",
"csgo-market": "*",
"unirest": "*",
"youtube-node": "1.2.x",
"redis": "*"
},
Expand Down
Loading

0 comments on commit 5b9bf3e

Please sign in to comment.