diff --git a/src/Discord.Net/Models/User.cs b/src/Discord.Net/Models/User.cs index 6e4ec7886..93b12d01b 100644 --- a/src/Discord.Net/Models/User.cs +++ b/src/Discord.Net/Models/User.cs @@ -87,7 +87,7 @@ namespace Discord public bool IsServerSuppressed => (_voiceState & VoiceState.ServerSuppressed) != 0; /// Returns the time this user was last seen online in this server. public DateTime? LastOnlineAt => Status != UserStatus.Offline ? DateTime.UtcNow : _lastOnline; - /// Gets this user's + /// Gets this user's current voice channel. public Channel VoiceChannel => _voiceChannelId != null ? Server.GetChannel(_voiceChannelId.Value) : null; /// Gets the URL to this user's current avatar. public string AvatarUrl => GetAvatarUrl(Id, AvatarId);