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/handleFA.ts | |
| parent | e50167a8077b0ada769cdf785971972c3ad865f7 (diff) | |
Migrated functions
Diffstat (limited to 'webAO/packets/handlers/handleFA.ts')
| -rw-r--r-- | webAO/packets/handlers/handleFA.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webAO/packets/handlers/handleFA.ts b/webAO/packets/handlers/handleFA.ts index ccfe923..7a373e8 100644 --- a/webAO/packets/handlers/handleFA.ts +++ b/webAO/packets/handlers/handleFA.ts @@ -1,4 +1,5 @@ import { client } from '../../client' +import { createArea } from '../../client/createArea'; import { safeTags } from '../../encoding'; /** @@ -9,6 +10,6 @@ export const handleFA = (args: string[]) => { client.resetAreaList(); for (let i = 1; i < args.length - 1; i++) { - client.createArea(i - 1, safeTags(args[i])); + createArea(i - 1, safeTags(args[i])); } } |
