.sclr will now correctly show the color without alpha prefixed
This commit is contained in:
parent
4283a939b7
commit
e05792639c
1 changed files with 3 additions and 3 deletions
|
@ -13,9 +13,9 @@ public partial class Utility
|
|||
public async Task ServerColorsShow()
|
||||
{
|
||||
var colors = _service.GetColors(ctx.Guild.Id);
|
||||
var okHex = colors?.Ok?.RawValue.ToString("X8");
|
||||
var warnHex = colors?.Warn?.RawValue.ToString("X8");
|
||||
var errHex = colors?.Error?.RawValue.ToString("X8");
|
||||
var okHex = colors?.Ok?.RawValue.ToString("x6");
|
||||
var warnHex = colors?.Warn?.RawValue.ToString("x6");
|
||||
var errHex = colors?.Error?.RawValue.ToString("x6");
|
||||
EmbedBuilder[] ebs =
|
||||
[
|
||||
CreateEmbed()
|
||||
|
|
Loading…
Reference in a new issue