From 7f420b0402765c4a38abe9b215e23c94799c96bd Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 23 Jun 2020 18:11:34 +0100 Subject: [PATCH] Disabling dm command --- EnsoBot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/EnsoBot.py b/EnsoBot.py index 30db86fb..1ff9ea54 100644 --- a/EnsoBot.py +++ b/EnsoBot.py @@ -245,7 +245,7 @@ async def marry(ctx, member: discord.Member): await ctx.send("Awww they waited too long (✖╭╮✖)") -# Allows the bot to echo the dm's that it receives +"""# Allows the bot to echo the dm's that it receives @client.event async def on_message(message): if message.author == client.user: @@ -253,7 +253,7 @@ async def on_message(message): # Checking if the message is not sent in server if message.guild is None: # Checking if the owner is sending the message - if commands.is_owner(): + if client.is_owner(154840866496839680): # Send message to #general channel = client.get_channel(663651584399507481) await channel.send(message.content) @@ -262,7 +262,7 @@ async def on_message(message): channel = client.get_channel(721449922838134876) await channel.send(message.content) - await client.process_commands(message) + await client.process_commands(message)""" # Bot Event for handling all errors within discord.commands