diff options
| author | Osmium Sorcerer <os@sof.beauty> | 2026-04-06 22:05:03 +0000 |
|---|---|---|
| committer | Osmium Sorcerer <os@sof.beauty> | 2026-06-06 03:06:43 +0000 |
| commit | 0a769da6759c0a8768ce600cbfb2a8f29d7ff7a7 (patch) | |
| tree | 22d0a99e1677d84b9262a0233062baf042828333 | |
| parent | 3ce48bf73372576c79236b4471a9282f9d7be6c4 (diff) | |
Temporarily default to blips value "m"
Blips aren't handled correctly every time, resulting in a lot of 404
URLs and invalid blips.
| -rw-r--r-- | webAO/client/handleCharacterInfo.ts | 2 | ||||
| -rw-r--r-- | webAO/packets/handlers/handleMS.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/webAO/client/handleCharacterInfo.ts b/webAO/client/handleCharacterInfo.ts index 84fd6138..c7bcc943 100644 --- a/webAO/client/handleCharacterInfo.ts +++ b/webAO/client/handleCharacterInfo.ts @@ -33,7 +33,7 @@ export const setupCharacterBasic = (chargs: string[], charid: number) => { name: safeTags(chargs[0]), showname: safeTags(chargs[0]), desc: safeTags(chargs[1]), - blips: "male", + blips: "m", gender: "", side: "def", chat: "", diff --git a/webAO/packets/handlers/handleMS.ts b/webAO/packets/handlers/handleMS.ts index 746b84d9..5a9d7896 100644 --- a/webAO/packets/handlers/handleMS.ts +++ b/webAO/packets/handlers/handleMS.ts @@ -16,7 +16,7 @@ export const handleMS = (args: string[]) => { const char_name = safeTags(args[3]); let msg_nameplate = args[3]; - let msg_blips = "male"; + let msg_blips = "m"; let char_chatbox = "default"; let char_muted = false; |
