We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebe3270 commit da6c062Copy full SHA for da6c062
1 file changed
cogs/bot_moderation.py
@@ -1,16 +1,15 @@
1
from datetime import datetime, timedelta
2
3
import discord
4
-from discord import Embed, Color
+from discord import Color, Embed
5
from discord.ext.commands import Bot, Cog
6
7
from config import CONFIG
8
9
+
10
class Database(Cog):
11
def __init__(self, bot: Bot):
12
self.bot = bot
- # Set up a global check that we're not in a blacklisted channel
13
- self.bot.add_check(not_in_blacklisted_channel)
14
15
@Cog.listener()
16
async def on_message(self, message: discord.Message):
0 commit comments