Skip to content

Commit c94f9c7

Browse files
committed
Template v2.4.3
* Fixed intents for `serverinfo` command
1 parent b156340 commit c94f9c7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

UPDATES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Updates List
22
Here is the list of all the updates that I made on this template.
33

4+
### Version 2.4.3
5+
* Fixed intents for `serverinfo` command
6+
47
### Version 2.4.2
58
* Blacklisted users are being ignored when executing a command
69

bot.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Description:
44
This is a template to create your own discord bot in python.
55
6-
Version: 2.4.2
6+
Version: 2.4.3
77
"""
88

99
import discord, asyncio, os, platform, sys
@@ -45,7 +45,7 @@
4545
intents.members = True
4646
"""
4747

48-
intents = discord.Intents.default()
48+
intents = discord.Intents.all()
4949

5050
bot = Bot(command_prefix=config.BOT_PREFIX, intents=intents)
5151

0 commit comments

Comments
 (0)