diff --git a/src/Discord.Net.Core/Entities/Users/GuildUserProperties.cs b/src/Discord.Net.Core/Entities/Users/GuildUserProperties.cs index e7203a426..8f2d2111e 100644 --- a/src/Discord.Net.Core/Entities/Users/GuildUserProperties.cs +++ b/src/Discord.Net.Core/Entities/Users/GuildUserProperties.cs @@ -67,11 +67,11 @@ namespace Discord /// public Optional Channel { get; set; } /// - /// Moves a user to a voice channel. If null, this user will be disconnected from their current voice channel. + /// Moves a user to a voice channel. Set to null to disconnect this user from their current voice channel. /// /// /// This user MUST already be in a for this to work. /// - public Optional ChannelId { get; set; } + public Optional ChannelId { get; set; } // TODO: v3 breaking change, change ChannelId to ulong? to allow for kicking users from voice } }