Skip to content

Commit

Permalink
Add external sound permission.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihlus authored and VelvetToroyashi committed Jun 17, 2023
1 parent 6fbe76f commit 6a7915e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,11 @@ public enum DiscordPermission
/// </summary>
UseSoundboard = 42,

/// <summary>
/// Allows the usage of custom soundboard sounds from other servers.
/// </summary>
UseExternalSounds = 45,

/// <summary>
/// Allows for sending voice messages.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ public enum DiscordVoicePermission
/// <inheritdoc cref="DiscordPermission.UseSoundboard"/>
UseSoundboard = DiscordPermission.UseSoundboard,

/// <inheritdoc cref="DiscordPermission.UseExternalSounds"/>
UseExternalSounds = DiscordPermission.UseExternalSounds,

/// <inheritdoc cref="DiscordPermission.SendVoiceMessages"/>
SendVoiceMessages = DiscordPermission.SendVoiceMessages
}

0 comments on commit 6a7915e

Please sign in to comment.