Set prefix to !

This commit is contained in:
JelNiSlaw 2022-12-02 22:15:30 +01:00
parent f5f398fe68
commit 52372b26a2
No known key found for this signature in database
GPG key ID: EA41571A0A88E97E

View file

@ -11,7 +11,7 @@ from . import cogs
class Wulkabot(commands.Bot): class Wulkabot(commands.Bot):
def __init__(self) -> None: def __init__(self) -> None:
super().__init__( super().__init__(
command_prefix=commands.when_mentioned_or("."), command_prefix=commands.when_mentioned_or("!"),
help_command=commands.MinimalHelpCommand(), help_command=commands.MinimalHelpCommand(),
intents=discord.Intents(guilds=True, messages=True, message_content=True), intents=discord.Intents(guilds=True, messages=True, message_content=True),
allowed_mentions=discord.AllowedMentions.none(), allowed_mentions=discord.AllowedMentions.none(),