diff options
Diffstat (limited to 'test-client/main.ts')
-rw-r--r-- | test-client/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-client/main.ts b/test-client/main.ts index 00699b60..78c20d72 100644 --- a/test-client/main.ts +++ b/test-client/main.ts @@ -125,7 +125,7 @@ function get_item_location(loc: ItemLocation): PlayerData | TileData { function send(p: PacketS) { ws.send(JSON.stringify(p)) } function packet(p: PacketC) { - if (!["position", "set_progress", "update_map"].includes(p.type)) + if (!["movement", "set_progress", "update_map"].includes(p.type)) console.log(p); switch (p.type) { case "version": |