summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--index.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/index.js b/index.js
index aae741b..2d60b12 100644
--- a/index.js
+++ b/index.js
@@ -58,11 +58,13 @@ shulker.on("ready", function() {
 });
 
 shulker.on("message", function(message) {
-    if (message.author.id !== shulker.user.id) {
-        var data = {
-            text: "<" + message.author.username + "> " + message.content
-        };
-        client.send('tellraw @a ["",' + JSON.stringify(data) + ']');
+    if (message.channel.id === shulker.channels.get("name", c.DISCORD_CHANNEL).id) {
+        if (message.author.id !== shulker.user.id) {
+            var data = {
+                text: "<" + message.author.username + "> " + message.content
+            };
+            client.send('tellraw @a ["",' + JSON.stringify(data) + ']');
+        }
     }
 });