diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2020-07-31 22:12:46 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2020-07-31 22:12:46 -0500 |
| commit | b0b4e666a42b324beb0b00c930999aad8aace93c (patch) | |
| tree | 7fd0e831fb42b374a3b10c7314b457d493a562fc /webAO/client.js | |
| parent | 2a405b291a6b45f97ebe80c2cf62e96ae6471a44 (diff) | |
Fix being unable to talk in 2.8
This is actually caused by a server-side issue, but changing empty
strings to '-' for the IC packet extensions will temporarily fix the
problem on the client side.
Diffstat (limited to 'webAO/client.js')
| -rw-r--r-- | webAO/client.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webAO/client.js b/webAO/client.js index 515af14..e075c90 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -267,14 +267,14 @@ class Client extends EventEmitter { extra_cccc = `${showname}#${other_charid}#${self_offset}#${noninterrupting_preanim}#`; if (extrafeatures.includes("looping_sfx")) { - const frame_screenshake = ""; - const frame_realization = ""; - const frame_sfx = ""; + const frame_screenshake = "-"; + const frame_realization = "-"; + const frame_sfx = "-"; extra_27 = `${looping_sfx}#${screenshake}#${frame_screenshake}#${frame_realization}#${frame_sfx}#`; if (extrafeatures.includes("effects")) { const additive = 0; - const effect = ""; + const effect = "-"; extra_28 = `${additive}#${effect}#`; } |
