Browse Source

Add ApplicationFlags.app_commands_badge

pull/8265/head
Rapptz 3 years ago
parent
commit
dc50736bfc
  1. 6
      discord/flags.py

6
discord/flags.py

@ -1417,6 +1417,12 @@ class ApplicationFlags(BaseFlags):
read message content in guilds."""
return 1 << 19
@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 official client."""
return 1 << 23
@fill_with_flags()
class ChannelFlags(BaseFlags):

Loading…
Cancel
Save