mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
fix: .sclr will now correctly show the color without alpha prefixed
This commit is contained in:
@@ -13,9 +13,9 @@ public partial class Utility
|
|||||||
public async Task ServerColorsShow()
|
public async Task ServerColorsShow()
|
||||||
{
|
{
|
||||||
var colors = _service.GetColors(ctx.Guild.Id);
|
var colors = _service.GetColors(ctx.Guild.Id);
|
||||||
var okHex = colors?.Ok?.RawValue.ToString("X8");
|
var okHex = colors?.Ok?.RawValue.ToString("x6");
|
||||||
var warnHex = colors?.Warn?.RawValue.ToString("X8");
|
var warnHex = colors?.Warn?.RawValue.ToString("x6");
|
||||||
var errHex = colors?.Error?.RawValue.ToString("X8");
|
var errHex = colors?.Error?.RawValue.ToString("x6");
|
||||||
EmbedBuilder[] ebs =
|
EmbedBuilder[] ebs =
|
||||||
[
|
[
|
||||||
CreateEmbed()
|
CreateEmbed()
|
||||||
|
Reference in New Issue
Block a user