fix a couple whitespace mistakes

This commit is contained in:
Kiloku
2024-12-25 13:56:19 -06:00
committed by Lywx
parent eb97ddbff8
commit b98e3aad5e
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -5201,7 +5201,7 @@ void Player_ArwingBrake(Player* player) {
} else {
sp30 = 1.5f;
sp34 = 0.35f;
}
}
if (CVarGetInteger("gInfiniteBoost", 0)) {
sp30 = 0.0f;
}
+2
View File
@@ -1522,6 +1522,7 @@ void Aquas_BlueMarineBoost(Player* player) {
player->boostCooldown = 1;
}
}
player->boostSpeed += 2.0f;
if (player->boostSpeed > 10.0f) {
player->boostSpeed = 10.0f;
@@ -1571,6 +1572,7 @@ void Aquas_BlueMarineBrake(Player* player) {
player->boostCooldown = 1;
}
}
player->boostSpeed -= 1.0f;
if (player->boostSpeed < -20.0f) {
player->boostSpeed = -20.0f;