From 0c94666f03b14308f06ea18f5b9043ddfa2e603e Mon Sep 17 00:00:00 2001 From: Ninjdai1 Date: Sun, 1 Oct 2023 18:26:44 +0200 Subject: [PATCH] Remove forgotten } --- commands/misc/graphismecommands/palette.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/graphismecommands/palette.mjs b/commands/misc/graphismecommands/palette.mjs index 4993d44..26435ff 100644 --- a/commands/misc/graphismecommands/palette.mjs +++ b/commands/misc/graphismecommands/palette.mjs @@ -27,7 +27,7 @@ async function generateRandomPalette() { const saturation = Math.random() * 40 + 50; // Random saturation between 50% and 90% const brightness = Math.random() * 40 + 50; // Random brightness between 50% and 90% - const color = hslToHex(hue + i * (360 / numColors) , saturation} , brightness); + const color = hslToHex(hue + i * (360 / numColors) , saturation , brightness); palette.push(color); }