Fix discord intents
This commit is contained in:
parent
5337f8a557
commit
13c5468b40
1 changed files with 3 additions and 1 deletions
|
@ -1,8 +1,10 @@
|
|||
from discord import Intents
|
||||
|
||||
from administrator.config import config
|
||||
import db
|
||||
from discord.ext import commands
|
||||
|
||||
bot = commands.Bot(command_prefix=config.get("prefix"))
|
||||
bot = commands.Bot(command_prefix=config.get("prefix"), intents=Intents.all())
|
||||
|
||||
import extensions
|
||||
|
||||
|
|
Reference in a new issue