mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-23 13:35:11 +03:00
fix a couple whitespace mistakes
This commit is contained in:
parent
eb97ddbff8
commit
b98e3aad5e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user