aboutsummaryrefslogtreecommitdiff
path: root/test-client/movement.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test-client/movement.ts')
-rw-r--r--test-client/movement.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-client/movement.ts b/test-client/movement.ts
index 883a64ec..88c47c33 100644
--- a/test-client/movement.ts
+++ b/test-client/movement.ts
@@ -42,7 +42,7 @@ function collide_player(p: PlayerData, dt: number) {
if (d < 0.01) continue
if (d >= PLAYER_SIZE * 2) continue
const norm = normalize(diff);
- const f = 1 / (1 + d)
+ const f = 100 / (1 + d)
p.vel.x += norm.x * f * dt
p.vel.y += norm.y * f * dt
}