aboutsummaryrefslogtreecommitdiff
path: root/webAO/client
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-11-17 22:51:58 +0100
committerstonedDiscord <Tukz@gmx.de>2022-11-17 22:51:58 +0100
commitfa9ca955b10bb272cdc0a1f803efbdd768111c60 (patch)
tree7aa58237fe29459ed25d3ea4384d36fbe5e805ea /webAO/client
parentfbb4ce9fafab3183e27204eccad73c542cb684c8 (diff)
add custom ini
Diffstat (limited to 'webAO/client')
-rw-r--r--webAO/client/fetchLists.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/webAO/client/fetchLists.ts b/webAO/client/fetchLists.ts
index 7f0104e..bf4fd1b 100644
--- a/webAO/client/fetchLists.ts
+++ b/webAO/client/fetchLists.ts
@@ -30,6 +30,8 @@ export const fetchCharacterList = async () => {
);
char_select.innerHTML = "";
+ char_select.add(new Option("Custom", "0"));
+
char_array.forEach((character: string) => {
char_select.add(new Option(character));
});