diff options
| author | stonedDiscord <Tukz@gmx.de> | 2023-01-06 17:54:16 +0100 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2023-01-06 17:54:16 +0100 |
| commit | ebc03ad3dd88b1fb67d4bf2cc0b7aff1d78c156d (patch) | |
| tree | 56b55b4e41f0646f49a8a1fa00e1eb7ee1f462dc | |
| parent | 087402b088c5a79cab7af016c1185bf64c05ac5e (diff) | |
fix color order
| -rw-r--r-- | webAO/packets/handlers/handleFL.ts | 11 |
1 files changed, 4 insertions, 7 deletions
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")) { |
