~starkingdoms/starkingdoms

f721b03e8628ccbb785826356945137793aa5695 — core 2 years ago ef79179
disable packet log because lagginess
1 files changed, 4 insertions(+), 1 deletions(-)

M starkingdoms-client/src/packet_ui.ts
M starkingdoms-client/src/packet_ui.ts => starkingdoms-client/src/packet_ui.ts +4 -1
@@ 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;

 */
}