diff options
| author | Caleb <caleb.mabry.15@cnu.edu> | 2022-08-30 18:32:27 -0400 |
|---|---|---|
| committer | Caleb <caleb.mabry.15@cnu.edu> | 2022-08-30 18:32:27 -0400 |
| commit | e66a37a62b06df5b0f48d64f6b9a14b9f81bd15d (patch) | |
| tree | ab39b1eb75f215e4bca85b5fabe60d4c7ebe3c8a /webAO/packets/handlers/handleRC.ts | |
| parent | fbe2a62fd081a60860df4169f6f74425b3ff833e (diff) | |
A buncha more
Diffstat (limited to 'webAO/packets/handlers/handleRC.ts')
| -rw-r--r-- | webAO/packets/handlers/handleRC.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/webAO/packets/handlers/handleRC.ts b/webAO/packets/handlers/handleRC.ts new file mode 100644 index 0000000..92c1e8e --- /dev/null +++ b/webAO/packets/handlers/handleRC.ts @@ -0,0 +1,10 @@ +import { client } from "../../client"; +import vanilla_character_arr from "../../constants/characters.js"; + +/** + * we are asking ourselves what characters there are + * @param {Array} args packet arguments + */ +export const handleRC = (_args: string[]) => { + client.sendSelf(`SC#${vanilla_character_arr.join("#")}#%`); +}
\ No newline at end of file |
