aboutsummaryrefslogtreecommitdiff
path: root/bot_discord.js
diff options
context:
space:
mode:
Diffstat (limited to 'bot_discord.js')
-rw-r--r--bot_discord.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/bot_discord.js b/bot_discord.js
index 2d9a488..02d7a7d 100644
--- a/bot_discord.js
+++ b/bot_discord.js
@@ -87,6 +87,7 @@ client.on('guildDelete', guild => {
client.on('message', (msg) => {
+ if (msg.author.bot) return;
if (!msg.content.startsWith(prefix)) return;
const args = msg.content.slice(prefix.length).trim().split(/ +/g);
const command = args.shift();