From 8b013ed7a5d771de1c2f12aa9c71834baaf581cb Mon Sep 17 00:00:00 2001 From: stoned Date: Sun, 10 Sep 2023 21:07:03 +0200 Subject: increase delay --- webAO/packets/handlers/handleSC.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webAO/packets') diff --git a/webAO/packets/handlers/handleSC.ts b/webAO/packets/handlers/handleSC.ts index c4b17ac..a31762a 100644 --- a/webAO/packets/handlers/handleSC.ts +++ b/webAO/packets/handlers/handleSC.ts @@ -23,7 +23,7 @@ export const handleSC = async (args: string[]) => { const chargs = args[i].split("&"); const charid = i - 1; - setTimeout(() => handleCharacterInfo(chargs, charid), charid*2); + setTimeout(() => handleCharacterInfo(chargs, charid), charid*6); } // We're done with the characters, request the music client.sender.sendServer("RM#%"); -- cgit