diff --git a/cogs/utils/checks.py b/cogs/utils/checks.py index b73335e..58d0c2a 100644 --- a/cogs/utils/checks.py +++ b/cogs/utils/checks.py @@ -69,7 +69,7 @@ def is_owner(ctx): def custom_perms(**perms): def predicate(ctx): # Return true if this is a private channel, we'll handle that in the registering of the command - if ctx.message.channel is discord.DMChannel: + if type(ctx.message.channel) is discord.DMChannel: return True # Get the member permissions so that we can compare