Added basic turret blob structures

This commit is contained in:
Anuken
2018-08-31 00:02:38 -04:00
parent dda3afe9fa
commit ac9e774795
5 changed files with 93 additions and 21 deletions
@@ -522,7 +522,7 @@ public class Player extends Unit implements BuilderTrait, CarryTrait, ShooterTra
isBoosting = true;
}
float speed = isBoosting && !mech.flying ? mech.boostSpeed : mech.speed;
float speed = isBoosting && !mech.flying ? debug ? 5f : mech.boostSpeed : mech.speed;
//fraction of speed when at max load
float carrySlowdown = 0.7f;