mirror of
https://github.com/izzy2lost/Starship.git
synced 2026-07-05 15:19:42 -07:00
fix a couple whitespace mistakes
This commit is contained in:
@@ -5201,7 +5201,7 @@ void Player_ArwingBrake(Player* player) {
|
||||
} else {
|
||||
sp30 = 1.5f;
|
||||
sp34 = 0.35f;
|
||||
}
|
||||
}
|
||||
if (CVarGetInteger("gInfiniteBoost", 0)) {
|
||||
sp30 = 0.0f;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user