diff options
| author | Caleb <caleb.mabry.15@cnu.edu> | 2022-09-09 18:46:42 -0400 |
|---|---|---|
| committer | Caleb <caleb.mabry.15@cnu.edu> | 2022-09-09 18:46:42 -0400 |
| commit | 93979636fb5d1c60f0da3290e80eb3ca9ead992f (patch) | |
| tree | 4770a2375d594ef080aa4ad8262aa2df42831c26 /webAO/packets/handlers/handleCI.ts | |
| parent | e50167a8077b0ada769cdf785971972c3ad865f7 (diff) | |
Migrated functions
Diffstat (limited to 'webAO/packets/handlers/handleCI.ts')
| -rw-r--r-- | webAO/packets/handlers/handleCI.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webAO/packets/handlers/handleCI.ts b/webAO/packets/handlers/handleCI.ts index 53e42f7..cb693bc 100644 --- a/webAO/packets/handlers/handleCI.ts +++ b/webAO/packets/handlers/handleCI.ts @@ -1,4 +1,5 @@ import { client } from '../../client' +import { handleCharacterInfo } from '../../client/handleCharacterInfo' /** * Handles incoming character information, bundling multiple characters * per packet. @@ -18,7 +19,7 @@ export const handleCI = (args: string[]) => { (<HTMLProgressElement>( document.getElementById("client_loadingbar") )).value = charid; - setTimeout(() => client.handleCharacterInfo(chargs, charid), 500); + setTimeout(() => handleCharacterInfo(chargs, charid), 500); } } // Request the next pack |
