From 9d504ea9c1c2ee052baebcfdd68476c80c854a73 Mon Sep 17 00:00:00 2001 From: RogueException Date: Thu, 31 Dec 2015 01:58:30 -0400 Subject: [PATCH] Minor edit --- src/Discord.Net/Models/User.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);