diff options
Diffstat (limited to 'bot.py')
-rw-r--r-- | bot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot.py b/bot.py index f48d32a..2e03cb7 100644 --- a/bot.py +++ b/bot.py @@ -5,7 +5,7 @@ from dotenv import load_dotenv import bot_utils load_dotenv() -intents = discord.Intents(members=True, presences=True) +intents = nextcord.Intents(members=True, presences=True) bot = commands.Bot(command_prefix="t!", activity=nextcord.Activity(name="for commands", type=nextcord.ActivityType.watching), intents=intents) bot.help_command = bot_utils.MyHelpCommand(command_attrs={'hidden':True}) |