Fixed breakable cores / Fixed sector sandbox / Fixed ship warp speed

This commit is contained in:
Anuken
2018-10-13 11:33:49 -04:00
parent cab585225d
commit ed95e38257
5 changed files with 14 additions and 6 deletions
@@ -534,7 +534,7 @@ public class Player extends Unit implements BuilderTrait, CarryTrait, ShooterTra
isBoosting = true;
}
float speed = isBoosting ? mech.boostSpeed : mech.speed;
float speed = isBoosting && !mech.flying ? mech.boostSpeed : mech.speed;
//fraction of speed when at max load
float carrySlowdown = 0.7f;