diff options
Diffstat (limited to 'webAO/client')
| -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)); }); |
