fix a couple whitespace mistakes

This commit is contained in:
Kiloku 2024-12-25 12:10:18 -03:00 committed by Lywx
parent eb97ddbff8
commit b98e3aad5e
2 changed files with 3 additions and 1 deletions

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;