From 4a8a809db0c2d70c61367c3e1ed4013107cf9f0e Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Sat, 15 Dec 2018 00:33:05 -0800 Subject: [PATCH] Explain why CreatorId can be null sometimes --- src/Discord.Net.Core/Entities/Emotes/GuildEmote.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.Core/Entities/Emotes/GuildEmote.cs b/src/Discord.Net.Core/Entities/Emotes/GuildEmote.cs index a41939390..1c5b3af9e 100644 --- a/src/Discord.Net.Core/Entities/Emotes/GuildEmote.cs +++ b/src/Discord.Net.Core/Entities/Emotes/GuildEmote.cs @@ -34,7 +34,7 @@ namespace Discord /// Gets the user Id that created this emoji. /// /// - /// A User Id who created this emoji, which may be null. + /// A user Id of the user who created this emoji, which may be null. A null value only indicates that the creator was not supplied as part of the API response. /// public ulong? CreatorId { get; }