From 925beb8b2e99e7f0262905df72e0a16361c928bc Mon Sep 17 00:00:00 2001 From: phxntxm Date: Wed, 10 Oct 2018 19:36:39 -0500 Subject: [PATCH] Send short messages to the channel --- cogs/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/misc.py b/cogs/misc.py index 3cd2807..f7c3111 100644 --- a/cogs/misc.py +++ b/cogs/misc.py @@ -110,7 +110,7 @@ class Miscallaneous: except (discord.Forbidden, discord.HTTPException): await ctx.send("I cannot DM you, please allow DM's from this server to run this command") else: - if ctx.guild and destination == ctx.channel: + if ctx.guild and destination == ctx.author: await ctx.send("I have just DM'd you some information about me!") @commands.command()