diff --git a/disnake/ext/commands/flags.py b/disnake/ext/commands/flags.py index d6d02f3f31..c01597b739 100644 --- a/disnake/ext/commands/flags.py +++ b/disnake/ext/commands/flags.py @@ -95,7 +95,6 @@ def __init__( self, *, allow_command_deletion: bool = ..., - on_cog_actions: bool = ..., on_cog_unload: bool = ..., sync_commands: bool = ..., sync_commands_debug: bool = ..., @@ -147,11 +146,6 @@ def sync_commands_debug(self): """:class:`bool`: Whether or not to show app command sync debug messages""" return 1 << 1 - @alias_flag_value - def on_cog_actions(self): - """:class:`bool`: Whether or not to sync app commands on cog load, unload, or reload.""" - return 1 << 2 | 1 << 4 - @flag_value def on_cog_unload(self): """:class:`bool`: Whether or not to sync app commands on cog unload or reload."""