Disabling the dm feature

pull/2/head
sgoudham 4 years ago
parent 313a82d09a
commit cd4a366b85

@ -245,7 +245,7 @@ async def marry(ctx, member: discord.Member):
await ctx.send("Awww they waited too long (✖╭╮✖)") 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 @client.event
async def on_message(message): async def on_message(message):
# Checking if the message is not sent in server # Checking if the message is not sent in server
@ -260,7 +260,7 @@ async def on_message(message):
channel = client.get_channel(721449922838134876) channel = client.get_channel(721449922838134876)
await channel.send(message.content) await channel.send(message.content)
await client.process_commands(message) await client.process_commands(message)"""
# Bot Event for handling all errors within discord.commands # Bot Event for handling all errors within discord.commands

@ -176,15 +176,17 @@ class Fun(commands.Cog):
# Send out one of the responses stored in the array # Send out one of the responses stored in the array
await ctx.send(f"{ctx.author.mention} {random.choice(responses)}") await ctx.send(f"{ctx.author.mention} {random.choice(responses)}")
"""
# ~dm only allows me to dm anyone through the bot # ~dm only allows me to dm anyone through the bot
@commands.command() @commands.command()
@commands.is_owner() @commands.is_owner()
async def dm(self, ctx, member: discord.Member, *, text): async def dm(self, ctx, member: discord.Member, *, text):
# Send the message typed the mentioned user # Send the message typed the mentioned user
await member.send(text) await member.send(text)
# Delete the message sent instantly # Delete the message sent instantly
await ctx.message.delete() await ctx.message.delete()
"""
# ~remindme command to allow the bot to dm you to remind you of something # ~remindme command to allow the bot to dm you to remind you of something
@commands.command(aliases=["remindme", "rm"]) @commands.command(aliases=["remindme", "rm"])

Loading…
Cancel
Save