We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61930e5 commit 860c703Copy full SHA for 860c703
2 files changed
cogs/fun.py
@@ -7,7 +7,7 @@
7
import discord
8
from discord.ext import commands
9
10
-from emoji import UNICODE_EMOJI
+# from emoji import UNICODE_EMOJI
11
12
from src.utils import user_only
13
main.py
@@ -4,6 +4,7 @@
4
5
import json
6
+from discord import Intents
from cogs.omega import Omega
@@ -30,7 +31,9 @@ class Bot(commands.Bot):
30
31
}
32
33
def __init__(self):
- super().__init__(config["PREFIX"])
34
+ intents = Intents.default()
35
+ intents.message_content = True
36
+ super().__init__(config["PREFIX"], intents=intents)
37
38
self.description = "A bot for two Omega Discord servers."
39
self.token = config["TOKEN"]
0 commit comments