aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets
diff options
context:
space:
mode:
authorstoned <Tukz@gmx.de>2023-09-10 21:07:03 +0200
committerstoned <Tukz@gmx.de>2023-09-10 21:07:03 +0200
commit8b013ed7a5d771de1c2f12aa9c71834baaf581cb (patch)
tree3a0311726b7f20eb0481d7ff2d6f1b246bc8006c /webAO/packets
parentcd827791f3ed4a2fed930fc40c2639b45357a6fa (diff)
increase delay
Diffstat (limited to 'webAO/packets')
-rw-r--r--webAO/packets/handlers/handleSC.ts2
1 files changed, 1 insertions, 1 deletions
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#%");