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