diff --git a/README.md b/README.md index 4c07fbc..86d7f27 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ More info can be found on DougleyBot's wiki, or on the [site.](http://steamingmu # If you're not very technical **For the sake of decentralisation, consider using your own copy of DougleyBot.** -If you plan on just using DougleyBot as a chatbot, and don't plan on using the files, you can make DougleyBot join your server via DougleyBot's Test server (https://discord.gg/0cFoiR5QVh57Spqg). Use `!join-server ` to make DougleyBot join your server. +If you plan on just using DougleyBot as a chatbot, and don't plan on using the files, you can make DougleyBot join your server via DougleyBot's Test server (https://discord.gg/0cFoiR5QVh57Spqg). Use `!join-server DougleyBot ` to make DougleyBot join your server. **Note** that admin restricted commands, like `!pullanddeploy`, `!online` and `!idle`, don't work on this instance. # Contributing diff --git a/discord_bot.js b/discord_bot.js index e858a4e..6700dc3 100644 --- a/discord_bot.js +++ b/discord_bot.js @@ -19,8 +19,9 @@ var youtube_plugin = new yt(); var min = 1; var max = 671; -var gi = require("./google_image_plugin"); -var google_image_plugin = new gi(); +//Broken, requires rewrite through Google Custom Search +//var gi = require("./google_image_plugin"); +//var google_image_plugin = new gi(); // Get the email and password var AuthDetails = require("./auth.json"); @@ -303,14 +304,14 @@ var commands = { console.log("The playing status has been refreshed"); } }, - "image": { - usage: "", - description: "Gets image matching tags from Google.", - process: function(bot,msg,suffix){ - google_image_plugin.respond(suffix,msg.channel,bot); - console.log("I've looked for images of " + suffix + " for " + msg.sender); - } - }, +// "image": { +// usage: "", +// description: "Gets image matching tags from Google.", +// process: function(bot,msg,suffix){ +// google_image_plugin.respond(suffix,msg.channel,bot); +// console.log("I've looked for images of " + suffix + " for " + msg.sender); +// } +// }, "pullanddeploy": { description: "Bot will perform a git pull master and restart with the new code.", adminOnly: true,