Fixed turret skill issue
This commit is contained in:
@@ -3634,6 +3634,7 @@ public class Blocks{
|
||||
ammo(
|
||||
Items.beryllium, new BasicBulletType(7.5f, 95){{
|
||||
width = 12f;
|
||||
hitSize = 7f;
|
||||
height = 20f;
|
||||
shootEffect = sfe;
|
||||
smokeEffect = Fx.shootBigSmoke;
|
||||
@@ -3649,6 +3650,7 @@ public class Blocks{
|
||||
Items.tungsten, new BasicBulletType(8f, 185){{
|
||||
width = 13f;
|
||||
height = 19f;
|
||||
hitSize = 7f;
|
||||
shootEffect = sfe;
|
||||
smokeEffect = Fx.shootBigSmoke;
|
||||
ammoMultiplier = 1;
|
||||
|
||||
@@ -2450,7 +2450,7 @@ public class UnitTypes{
|
||||
//region erekir - tank
|
||||
|
||||
stell = new TankUnitType("stell"){{
|
||||
hitSize = 11f;
|
||||
hitSize = 12f;
|
||||
treadPullOffset = 3;
|
||||
speed = 0.75f;
|
||||
rotateSpeed = 3.5f;
|
||||
|
||||
@@ -33,7 +33,7 @@ public class ItemTurret extends Turret{
|
||||
|
||||
/** Makes copies of all bullets and limits their range. */
|
||||
public void limitRange(){
|
||||
limitRange(5f);
|
||||
limitRange(7f);
|
||||
}
|
||||
|
||||
/** Makes copies of all bullets and limits their range. */
|
||||
|
||||
Reference in New Issue
Block a user