diff --git a/src/Kook.Net.Core/Entities/Emotes/Emote.cs b/src/Kook.Net.Core/Entities/Emotes/Emote.cs index 69c75cc3..a014789d 100644 --- a/src/Kook.Net.Core/Entities/Emotes/Emote.cs +++ b/src/Kook.Net.Core/Entities/Emotes/Emote.cs @@ -36,8 +36,6 @@ public class Emote : IEmote /// public Emote(string id, string name, bool? animated = null) { - if (string.IsNullOrWhiteSpace(name)) - throw new ArgumentException("A custom emote must have a name", nameof(name)); Id = id; Name = name; Animated = animated;