diff --git a/discord/flags.py b/discord/flags.py index 1598708488..967339c007 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -282,15 +282,6 @@ def join_notification_replies(self): """ return 8 - @flag_value - def app_commands_badge(self): - """:class:`bool`: Returns ``True`` if the application has registered a global application - command. This shows up as a badge in the bot's profile. - - .. versionadded:: 2.1 - """ - return 1 << 23 - @fill_with_flags() class MessageFlags(BaseFlags): @@ -1372,6 +1363,15 @@ def gateway_message_content_limited(self): """ return 1 << 19 + @flag_value + def app_commands_badge(self): + """:class:`bool`: Returns ``True`` if the application has registered at least one global application + command, and by extension has the badge. + + .. versionadded:: 2.1 + """ + return 1 << 23 + @fill_with_flags() class ChannelFlags(BaseFlags):