From a39f212783f105d2385bd632601943332bcc0980 Mon Sep 17 00:00:00 2001 From: Elijah Cohen Date: Thu, 2 May 2019 18:43:02 -0500 Subject: [PATCH] faster --- server/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/constants.js b/server/constants.js index 28e8b73..b4d5970 100644 --- a/server/constants.js +++ b/server/constants.js @@ -16,8 +16,8 @@ var c = { ANGLE_THRESH: 0.2, //radians, needs to acct for various rotatings going on... can prolly wing it PADDLE_MVT_BONUS: 0.1, // why this value? who knows. the extra speed from paddles in motion // ball - MIN_INIT: 0.1, - MAX_INIT: 1, // initial speed constraints + MIN_INIT: 1, + MAX_INIT: 3, // initial speed constraints BALL_RADIUS: 0.5, MAX_SPEED: 15, SPEED_BUMP: 0.2, -- 2.39.2