From f721b03e8628ccbb785826356945137793aa5695 Mon Sep 17 00:00:00 2001 From: core Date: Sun, 26 Nov 2023 22:45:45 -0500 Subject: [PATCH] disable packet log because lagginess --- starkingdoms-client/src/packet_ui.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/starkingdoms-client/src/packet_ui.ts b/starkingdoms-client/src/packet_ui.ts index d8f6059fa731290db36e02d2f350c9747cd9e084..2a62c375f7ef92cff4e59eacb9b9e848e30b62d4 100644 --- a/starkingdoms-client/src/packet_ui.ts +++ b/starkingdoms-client/src/packet_ui.ts @@ -131,7 +131,8 @@ export function selectPacket(id: number) { export function appendPacket(packet: Packet) { packets.push(packet); - + return; +/* let duration = "--"; if (last_packet !== null) { duration = (new Date().getTime() - last_packet!.getTime()).toString() + "ms"; @@ -173,4 +174,6 @@ export function appendPacket(packet: Packet) { log_body.appendChild(tr); log_body.scrollTop = log_body.scrollHeight; + + */ }