diff options
| author | stonedDiscord <stonedDiscord@users.noreply.github.com> | 2024-11-20 13:31:50 +0000 |
|---|---|---|
| committer | GitHub Action <actions@github.com> | 2024-11-20 13:31:50 +0000 |
| commit | 6684f3fce6e90fd0574d7bab63b629554ab03ef6 (patch) | |
| tree | b2a62247d17e23a77af57aea355ba621666817c2 /webAO/packets/handlers/handleMS.ts | |
| parent | 95a2d1361d84c61b454ebe506e6963b93f6d8dee (diff) | |
Prettified Code!
Diffstat (limited to 'webAO/packets/handlers/handleMS.ts')
| -rw-r--r-- | webAO/packets/handlers/handleMS.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webAO/packets/handlers/handleMS.ts b/webAO/packets/handlers/handleMS.ts index 0c54a57..7685bd6 100644 --- a/webAO/packets/handlers/handleMS.ts +++ b/webAO/packets/handlers/handleMS.ts @@ -23,7 +23,7 @@ export const handleMS = (args: string[]) => { if (char_id < client.char_list_length && char_id >= 0) { if (client.chars[char_id].name !== char_name) { console.info( - `${client.chars[char_id].name} is iniediting to ${char_name}` + `${client.chars[char_id].name} is iniediting to ${char_name}`, ); const chargs = (`${char_name}&` + "iniediter").split("&"); handleCharacterInfo(chargs, char_id); @@ -38,7 +38,7 @@ export const handleMS = (args: string[]) => { try { msg_blips = client.chars[char_id].blips; - } catch (e) { } + } catch (e) {} try { char_chatbox = client.chars[char_id].chat; @@ -169,4 +169,4 @@ export const handleMS = (args: string[]) => { handle_ic_speaking(chatmsg); // no await } } -} +}; |
