mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-05-16 18:59:09 +00:00
Add intents to python -m discord newbot
This commit is contained in:
parent
8eb2e19c41
commit
781b297ac9
@ -67,8 +67,8 @@ import discord
|
|||||||
import config
|
import config
|
||||||
|
|
||||||
class Bot(commands.{base}):
|
class Bot(commands.{base}):
|
||||||
def __init__(self, **kwargs):
|
def __init__(self, intents: discord.Intents, **kwargs):
|
||||||
super().__init__(command_prefix=commands.when_mentioned_or('{prefix}'), **kwargs)
|
super().__init__(command_prefix=commands.when_mentioned_or('{prefix}'), intents=intents, **kwargs)
|
||||||
|
|
||||||
async def setup_hook(self):
|
async def setup_hook(self):
|
||||||
for cog in config.cogs:
|
for cog in config.cogs:
|
||||||
@ -81,7 +81,9 @@ class Bot(commands.{base}):
|
|||||||
print(f'Logged on as {{self.user}} (ID: {{self.user.id}})')
|
print(f'Logged on as {{self.user}} (ID: {{self.user.id}})')
|
||||||
|
|
||||||
|
|
||||||
bot = Bot()
|
intents = discord.Intents.default()
|
||||||
|
intents.message_content = True
|
||||||
|
bot = Bot(intents=intents)
|
||||||
|
|
||||||
# write general commands here
|
# write general commands here
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user