diff options
| -rw-r--r-- | webAO/packets/handlers/handleMS.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webAO/packets/handlers/handleMS.ts b/webAO/packets/handlers/handleMS.ts index a2f7f33..746b84d 100644 --- a/webAO/packets/handlers/handleMS.ts +++ b/webAO/packets/handlers/handleMS.ts @@ -85,8 +85,8 @@ export const handleMS = (args: string[]) => { other_charid: Number(args[17]), other_name: safeTags(args[18]), other_emote: safeTags(args[19]), - self_offset: args[20].split("<and>"), // HACK: here as well, client is fucked and uses this instead of & - other_offset: args[21].split("<and>"), + self_offset: args[20].split("&"), + other_offset: args[21].split("&"), other_flip: Number(args[22]), noninterrupting_preanim: Number(args[23]), }; |
