diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-11-17 22:51:58 +0100 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2022-11-17 22:51:58 +0100 |
| commit | fa9ca955b10bb272cdc0a1f803efbdd768111c60 (patch) | |
| tree | 7aa58237fe29459ed25d3ea4384d36fbe5e805ea /webAO | |
| parent | fbb4ce9fafab3183e27204eccad73c542cb684c8 (diff) | |
add custom ini
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/client/fetchLists.ts | 2 |
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)); }); |
