From 76b7914321da80e33472034366ed8dc95a905ad3 Mon Sep 17 00:00:00 2001 From: ChocoTaco1 Date: Sun, 20 Sep 2020 13:39:55 -0400 Subject: [PATCH] Oob Bounce speed limit Lak --- Classic/scripts/LakRabbitGame.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classic/scripts/LakRabbitGame.cs b/Classic/scripts/LakRabbitGame.cs index da79d4a..fb285c2 100644 --- a/Classic/scripts/LakRabbitGame.cs +++ b/Classic/scripts/LakRabbitGame.cs @@ -2098,7 +2098,7 @@ function plzBounceOffGrid(%obj, %bounceForce, %count) %vec = VectorNormalize(%vec); %vec = VectorScale(%vec, 25); } - else if (%oldSpeed < 300) + else if (%oldSpeed < 60) //Max speed in which to get a bounce: Added so runners cant abuse %vec = VectorScale(%vec, 1.15); // apply the impulse to the object