diff options
| author | David Skoland <davidskoland@gmail.com> | 2023-11-18 14:18:27 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2023-11-18 14:18:27 +0100 |
| commit | a00962c9580fd98faa2861ab73d3a73150432288 (patch) | |
| tree | a456591c01cb932c35912d1501121500382a5088 /webAO | |
| parent | d8010fef613c4aa2add282092768aaa631dcaf88 (diff) | |
Remove unused variables
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/master.ts | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/webAO/master.ts b/webAO/master.ts index fa291b5..96999a0 100644 --- a/webAO/master.ts +++ b/webAO/master.ts @@ -1,10 +1,10 @@ import FingerprintJS from '@fingerprintjs/fingerprintjs'; -import { unescapeChat, safeTags } from './encoding'; +import { safeTags } from './encoding'; declare global { interface Window { - setServ: (ID: any) => void; + setServ: (ID: number) => void; } } @@ -19,11 +19,9 @@ interface AOServer { onlineStatus?: string, } -const myStorage = window.localStorage; - const clientVersion = process.env.npm_package_version; -const MASTERSERVER_IP = 'master.aceattorneyonline.com:27014'; +// const MASTERSERVER_IP = 'master.aceattorneyonline.com:27014'; const serverlist_domain = 'servers.aceattorneyonline.com'; const protocol = window.location.protocol; |
