From b0b4e666a42b324beb0b00c930999aad8aace93c Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Fri, 31 Jul 2020 22:12:46 -0500 Subject: 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. --- webAO/client.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'webAO/client.js') 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}#`; } -- cgit