From cad05ad8950e1bc829570bbf7bc9b305dd0759cf Mon Sep 17 00:00:00 2001 From: Pierre Wessman <4029607+pierrewessman@users.noreply.github.com> Date: Tue, 16 Sep 2025 16:48:41 +0200 Subject: [PATCH] increase player speed --- src/entities/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entities/player.js b/src/entities/player.js index a9ad4f2..53e45cb 100644 --- a/src/entities/player.js +++ b/src/entities/player.js @@ -19,7 +19,7 @@ class Player { this.role = position; // 'LW', 'C', 'RW', 'LD', 'RD', 'G' this.radius = position === 'G' ? 20 : 12; this.mass = position === 'G' ? 2 : 1; - this.maxSpeed = position === 'G' ? 150 : 200; + this.maxSpeed = position === 'G' ? 200 : 280; this.acceleration = 800; this.restitution = 0.8;