summary refs log tree commit diff homepage
path: root/index.js
diff options
context:
space:
mode:
authordestruc7i0n <destruc7i0n@users.noreply.github.com>2016-01-12 16:05:56 -0500
committerColin D'Souza <dscdsouza@outlook.com>2016-01-12 21:15:33 -0500
commit7ae6b8af09baa5729beebfddf9c19d4ca6436d3f (patch)
tree8611be1835edca58374df1be25c755afdb0db03c /index.js
parentUpdate README.md (diff)
downloadshulker-7ae6b8af09baa5729beebfddf9c19d4ca6436d3f.tar.gz
shulker-7ae6b8af09baa5729beebfddf9c19d4ca6436d3f.zip
Update index.js
Diffstat (limited to 'index.js')
-rw-r--r--index.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/index.js b/index.js
index 551351b..24e6464 100644
--- a/index.js
+++ b/index.js
@@ -7,7 +7,7 @@ var app = express();
 var http = require("http").Server(app); 
 var c = require("./config.json");
 var debug = c.DEBUG;
-var d2m = new Discord.Client();
+var shulker = new Discord.Client();
 
 var client = new Rcon(c.MINECRAFT_SERVER_RCON_IP, c.MINECRAFT_SERVER_RCON_PORT, c.MINECRAFT_SERVER_RCON_PASSWORD);
 
@@ -36,8 +36,8 @@ app.use(function(request, response, next) {
   });
 });
 
-d2m.on("ready", function() {
-    var channel = d2m.channels.get("name", c.DISCORD_CHANNEL).id; 
+shulker.on("ready", function() {
+    var channel = shulker.channels.get("name", c.DISCORD_CHANNEL).id; 
     app.post(c.WEBHOOK, function(request, response){
         body = request.rawBody;
         console.log("[INFO] Recieved "+body);  
@@ -50,20 +50,20 @@ d2m.on("ready", function() {
                 console.log("[DEBUG] Text: "+bodymatch[2]);
             }
             message = "**"+bodymatch[1]+"**: "+bodymatch[2];
-            d2m.channels.get("id", channel).sendMessage(message);
+            shulker.channels.get("id", channel).sendMessage(message);
         }
         response.send("");
     });
 });
 
-d2m.on("message", function (message) {
-    if(message.author.id !== d2m.user.id) {
+shulker.on("message", function (message) {
+    if(message.author.id !== shulker.user.id) {
         data = { text: "<"+message.author.username+"> "+message.content };
         client.send('tellraw @a ["",'+JSON.stringify(data)+']');
     }
 });
 
-d2m.login(c.DISCORD_EMAIL, c.DISCORD_PASSWORD);
+shulker.login(c.DISCORD_EMAIL, c.DISCORD_PASSWORD);
 
 var ipaddress = process.env.OPENSHIFT_NODEJS_IP || process.env.IP || "127.0.0.1";
 var serverport = process.env.OPENSHIFT_NODEJS_PORT || process.env.PORT || c.PORT;