diff --git a/src/Discord.Net/Entities/Permissions/OverwritePermissions.cs b/src/Discord.Net/Entities/Permissions/OverwritePermissions.cs index 7de013974..2fd0c2d93 100644 --- a/src/Discord.Net/Entities/Permissions/OverwritePermissions.cs +++ b/src/Discord.Net/Entities/Permissions/OverwritePermissions.cs @@ -20,43 +20,43 @@ namespace Discord /// Gets a packed value representing all the denied permissions in this OverwritePermissions. public ulong DenyValue { get; } - /// If True, a user may create invites. + /// If Allowed, a user may create invites. public PermValue CreateInstantInvite => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.CreateInstantInvite); - /// If True, a user may create, delete and modify this channel. + /// If Allowed, a user may create, delete and modify this channel. public PermValue ManageChannel => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.ManageChannel); - /// If True, a user may join channels. + /// If Allowed, a user may join channels. public PermValue ReadMessages => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.ReadMessages); - /// If True, a user may send messages. + /// If Allowed, a user may send messages. public PermValue SendMessages => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.SendMessages); - /// If True, a user may send text-to-speech messages. + /// If Allowed, a user may send text-to-speech messages. public PermValue SendTTSMessages => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.SendTTSMessages); - /// If True, a user may delete messages. + /// If Allowed, a user may delete messages. public PermValue ManageMessages => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.ManageMessages); - /// If True, Discord will auto-embed links sent by this user. + /// If Allowed, Discord will auto-embed links sent by this user. public PermValue EmbedLinks => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.EmbedLinks); - /// If True, a user may send files. + /// If Allowed, a user may send files. public PermValue AttachFiles => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.AttachFiles); - /// If True, a user may read previous messages. + /// If Allowed, a user may read previous messages. public PermValue ReadMessageHistory => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.ReadMessageHistory); - /// If True, a user may mention @everyone. + /// If Allowed, a user may mention @everyone. public PermValue MentionEveryone => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.MentionEveryone); - /// If True, a user may use custom emoji from other guilds. + /// If Allowed, a user may use custom emoji from other guilds. public PermValue UseExternalEmojis => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.UseExternalEmojis); - /// If True, a user may connect to a voice channel. + /// If Allowed, a user may connect to a voice channel. public PermValue Connect => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.Connect); - /// If True, a user may speak in a voice channel. + /// If Allowed, a user may speak in a voice channel. public PermValue Speak => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.Speak); - /// If True, a user may mute users. + /// If Allowed, a user may mute users. public PermValue MuteMembers => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.MuteMembers); - /// If True, a user may deafen users. + /// If Allowed, a user may deafen users. public PermValue DeafenMembers => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.DeafenMembers); - /// If True, a user may move other users between voice channels. + /// If Allowed, a user may move other users between voice channels. public PermValue MoveMembers => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.MoveMembers); - /// If True, a user may use voice-activity-detection rather than push-to-talk. + /// If Allowed, a user may use voice-activity-detection rather than push-to-talk. public PermValue UseVAD => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.UseVAD); - /// If True, a user may adjust permissions. This also implictly grants all other permissions. + /// If Allowed, a user may adjust permissions. This also implictly grants all other permissions. public PermValue ManagePermissions => Permissions.GetValue(AllowValue, DenyValue, ChannelPermission.ManagePermissions); /// Creates a new OverwritePermissions with the provided allow and deny packed values.