fix: Remove null coalescing on ToEmbedBuilder Color (#1333)
Very simple change, removes the null coalescing operator on the EmbedBuilder's Color property in ToEmbedBuilder.
This commit is contained in:
@@ -44,7 +44,7 @@ namespace Discord
|
||||
IconUrl = embed.Author?.IconUrl,
|
||||
Url = embed.Author?.Url
|
||||
},
|
||||
Color = embed.Color ?? Color.Default,
|
||||
Color = embed.Color,
|
||||
Description = embed.Description,
|
||||
Footer = new EmbedFooterBuilder
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user