Fixed turret skill issue

This commit is contained in:
Anuken
2022-04-07 03:05:26 -04:00
parent 018b2bb94b
commit feb3e9acd7
3 changed files with 4 additions and 2 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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. */