diff options
| author | stonedDiscord <Tukz@gmx.de> | 2026-04-01 19:11:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-01 19:11:15 +0200 |
| commit | 5789a0b3c238b7a569941a092ed00362403519f2 (patch) | |
| tree | 5e62794fb06889de0e43957cb40f1e759a96c16c /webAO/client.ts | |
| parent | d6163543f483c35737da52b7e307cf6f65828f82 (diff) | |
| parent | d24cdeff690017969cebdee08e91db89848fd7ed (diff) | |
Merge pull request #300 from AttorneyOnline/pick-char-and-area
Enable auto pick area and char
Diffstat (limited to 'webAO/client.ts')
| -rw-r--r-- | webAO/client.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webAO/client.ts b/webAO/client.ts index 05a40c9..8a01526 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -22,7 +22,8 @@ import { } from "./client/fetchLists"; import getCookie from "./utils/getCookie"; import setCookie from "./utils/setCookie"; -const { ip: serverIP, connect, mode, theme, serverName } = queryParser(); +const { ip: serverIP, connect, mode, theme, serverName, char: autoChar, area: autoArea } = queryParser(); +export { autoChar, autoArea }; document.title = serverName; |
