Skip to content

Commit 84a6ea1

Browse files
fix: default allowed mentions to none except replied user
mentions will be enabled as needed in the future
1 parent edba066 commit 84a6ea1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

monty/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ async def main() -> None:
103103
redis_session=redis_session,
104104
command_prefix=constants.Client.default_command_prefix,
105105
activity=disnake.Game(name=f"Commands: {constants.Client.default_command_prefix}help"),
106-
allowed_mentions=disnake.AllowedMentions(everyone=False),
106+
allowed_mentions=disnake.AllowedMentions(everyone=False, roles=False, users=False, replied_user=True),
107107
intents=_intents,
108108
command_sync_flags=command_sync_flags,
109109
**kwargs,

0 commit comments

Comments
 (0)