This commit is contained in:
Anuken
2020-11-17 15:05:24 -05:00
parent 40ae2e64c8
commit e453c6033a
4 changed files with 10 additions and 14 deletions

View File

@@ -111,7 +111,7 @@ public class UnitTypes implements ContentList{
}};
fortress = new UnitType("fortress"){{
speed = 0.38f;
speed = 0.39f;
hitSize = 13f;
rotateSpeed = 3f;
targetAir = false;
@@ -136,7 +136,7 @@ public class UnitTypes implements ContentList{
collides = true;
collidesTiles = true;
splashDamageRadius = 24f;
splashDamage = 38f;
splashDamage = 45f;
backColor = Pal.bulletYellowBack;
frontColor = Pal.bulletYellow;
}};
@@ -942,7 +942,7 @@ public class UnitTypes implements ContentList{
engineOffset = 7.8f;
range = 140f;
faceTarget = false;
armor = 4f;
armor = 3f;
targetFlag = BlockFlag.factory;
commandLimit = 5;
@@ -950,7 +950,7 @@ public class UnitTypes implements ContentList{
minShootVelocity = 0.75f;
x = 3f;
shootY = 0f;
reload = 11f;
reload = 12f;
shootCone = 180f;
ejectEffect = Fx.none;
inaccuracy = 15f;
@@ -1466,7 +1466,7 @@ public class UnitTypes implements ContentList{
shake = 1.5f;
ejectEffect = Fx.casing2;
shootSound = Sounds.bang;
bullet = Bullets.artilleryIncendiary;
bullet = Bullets.artilleryDense;
}});
}};

View File

@@ -583,7 +583,7 @@ public class NetClient implements ApplicationListener{
totalLength += length;
}
if(totalLength > 2048){
if(totalLength > 1024){
usedRequests = i + 1;
break;
}

View File

@@ -66,7 +66,7 @@ public abstract class Turret extends ReloadTurret{
protected Vec2 tr = new Vec2();
protected Vec2 tr2 = new Vec2();
public @Load(value = "base-@", fallback = "block-@size") TextureRegion baseRegion;
public @Load(value = "@-base", fallback = "block-@size") TextureRegion baseRegion;
public @Load("@-heat") TextureRegion heatRegion;
public Cons<TurretBuild> drawer = tile -> Draw.rect(region, tile.x + tr2.x, tile.y + tr2.y, tile.rotation - 90);