diff options
| -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 d3d1eb54..cdef5a91 100644 --- a/test-client/main.ts +++ b/test-client/main.ts @@ -112,7 +112,7 @@ function packet(p: PacketC) {              const pl = players.get(p.player)!              const pos = { x: p.pos[0], y: p.pos[1] }              const dist = length(sub_v2(pl, pos)); -            if (p.player == my_id && dist < 1) return; // we know better where we are +            if (p.player == my_id && dist < 3) return; // we know better where we are              pl.x = pos.x              pl.y = pos.y              pl.rot = p.rot | 
