Skip to content

Commit

Permalink
fix: swap packet "index" (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
lesleyrs authored Jun 10, 2024
1 parent ae15229 commit 1a2a1a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lostcity/network/225/incoming/prot/ClientProt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ export default class ClientProt {

static readonly REBUILD_GETMAPS = new ClientProt(4, 150, -1);

static readonly IDLE_TIMER = new ClientProt(6, 70, 0);
static readonly IDLE_TIMER = new ClientProt(30, 70, 0);

static readonly NO_TIMEOUT = new ClientProt(30, 108, 0); // NXT naming
static readonly NO_TIMEOUT = new ClientProt(6, 108, 0); // NXT naming

static readonly EVENT_TRACKING = new ClientProt(34, 81, -2);
static readonly EVENT_CAMERA_POSITION = new ClientProt(35, 189, 6); // NXT naming
Expand Down

0 comments on commit 1a2a1a1

Please sign in to comment.