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;