From ebc03ad3dd88b1fb67d4bf2cc0b7aff1d78c156d Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Fri, 6 Jan 2023 17:54:16 +0100 Subject: fix color order --- webAO/packets/handlers/handleFL.ts | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'webAO/packets/handlers/handleFL.ts') diff --git a/webAO/packets/handlers/handleFL.ts b/webAO/packets/handlers/handleFL.ts index 378d5a9..89df4ed 100644 --- a/webAO/packets/handlers/handleFL.ts +++ b/webAO/packets/handlers/handleFL.ts @@ -15,13 +15,10 @@ export const handleFL = (args: string[]) => { document.getElementById("textcolor") ); - colorselect.options[colorselect.options.length] = new Option( - "Yellow", - "5" - ); - colorselect.options[colorselect.options.length] = new Option("Grey", "6"); - colorselect.options[colorselect.options.length] = new Option("Pink", "7"); - colorselect.options[colorselect.options.length] = new Option("Cyan", "8"); + colorselect.options[colorselect.options.length] = new Option("Yellow","5"); + colorselect.options[colorselect.options.length] = new Option("Pink", "6"); + colorselect.options[colorselect.options.length] = new Option("Cyan", "7"); + colorselect.options[colorselect.options.length] = new Option("Grey", "8"); } if (args.includes("cccc_ic_support")) { -- cgit