Skip to content

Commit

Permalink
Add USE_EXTERNAL_APPLICATIONS permission
Browse files Browse the repository at this point in the history
  • Loading branch information
MinnDevelopment committed Jun 16, 2024
1 parent 48cc3b6 commit 83de507
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/net/dv8tion/jda/api/Permission.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public enum Permission
MESSAGE_EXT_STICKER( 37, true, true, "Use External Stickers"),
MESSAGE_ATTACH_VOICE_MESSAGE(46, true, true, "Send Voice Messages"),
MESSAGE_SEND_POLLS( 49, true, true, "Create Polls"),
USE_EXTERNAL_APPLICATIONS( 50, true, true, "Use External Apps"),

// Thread Permissions
MANAGE_THREADS( 34, true, true, "Manage Threads"),
Expand Down Expand Up @@ -124,7 +125,7 @@ public enum Permission
public static final long ALL_TEXT_PERMISSIONS
= Permission.getRaw(MESSAGE_ADD_REACTION, MESSAGE_SEND, MESSAGE_TTS, MESSAGE_MANAGE,
MESSAGE_EMBED_LINKS, MESSAGE_ATTACH_FILES, MESSAGE_EXT_EMOJI, MESSAGE_EXT_STICKER,
MESSAGE_HISTORY, MESSAGE_MENTION_EVERYONE, USE_APPLICATION_COMMANDS,
MESSAGE_HISTORY, MESSAGE_MENTION_EVERYONE, USE_APPLICATION_COMMANDS, USE_EXTERNAL_APPLICATIONS,
MANAGE_THREADS, CREATE_PUBLIC_THREADS, CREATE_PRIVATE_THREADS, MESSAGE_SEND_IN_THREADS, MESSAGE_ATTACH_VOICE_MESSAGE);

/**
Expand Down

0 comments on commit 83de507

Please sign in to comment.