diff options
| author | Caleb Mabry <36182383+caleb-mabry@users.noreply.github.com> | 2024-09-29 13:28:36 -0400 |
|---|---|---|
| committer | Caleb Mabry <36182383+caleb-mabry@users.noreply.github.com> | 2024-09-29 13:28:36 -0400 |
| commit | 98ce8ca67b27473cc5a00646a1752bbd2ce6347a (patch) | |
| tree | 2dd3b229f8c5a230c71a9690ff5e8e1ca7a23651 /webAO | |
| parent | 992383686efaf4ec30944ac46d7775fd9ad5c16e (diff) | |
HandleMS should only be in charge of parsing chat message.
Diffstat (limited to 'webAO')
| -rw-r--r-- | webAO/packets/handlers/handleMS.ts | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/webAO/packets/handlers/handleMS.ts b/webAO/packets/handlers/handleMS.ts index 1c30d55..0c54a57 100644 --- a/webAO/packets/handlers/handleMS.ts +++ b/webAO/packets/handlers/handleMS.ts @@ -4,16 +4,14 @@ import { client, extrafeatures, UPDATE_INTERVAL } from "../../client"; import { handleCharacterInfo } from "../../client/handleCharacterInfo"; import { resetICParams } from "../../client/resetICParams"; import { prepChat, safeTags } from "../../encoding"; -import { handle_ic_speaking } from '../../viewport/utils/handleICSpeaking' +import { handle_ic_speaking } from "../../viewport/utils/handleICSpeaking"; /** - * Handles an in-character chat message. - * @param {*} args packet arguments - */ + * Handles an in-character chat message. + * @param {*} args packet arguments + */ export const handleMS = (args: string[]) => { // TODO: this if-statement might be a bug. if (args[4] !== client.viewport.getChatmsg().content) { - document.getElementById("client_inner_chat")!.innerHTML = ""; - const char_id = Number(args[9]); const char_name = safeTags(args[3]); |
