diff --git a/core/src/mindustry/content/UnitTypes.java b/core/src/mindustry/content/UnitTypes.java index dcd541e25d..68a1816294 100644 --- a/core/src/mindustry/content/UnitTypes.java +++ b/core/src/mindustry/content/UnitTypes.java @@ -3624,7 +3624,7 @@ public class UnitTypes{ bullet = new BasicBulletType(5f, 34){{ width = 7f; height = 12f; - lifetime = 25f; + lifetime = 21f; shootEffect = Fx.sparkShoot; smokeEffect = Fx.shootBigSmoke; hitColor = backColor = trailColor = Pal.suppress; @@ -3706,7 +3706,7 @@ public class UnitTypes{ trailParam = 4f; speed = 3f; damage = 75f; - lifetime = 75f; + lifetime = 68f; width = height = 15f; backColor = Pal.sapBulletBack; frontColor = Pal.sapBullet; diff --git a/core/src/mindustry/editor/MapResizeDialog.java b/core/src/mindustry/editor/MapResizeDialog.java index f5ea504b33..7a5c15ce71 100644 --- a/core/src/mindustry/editor/MapResizeDialog.java +++ b/core/src/mindustry/editor/MapResizeDialog.java @@ -43,7 +43,7 @@ public class MapResizeDialog extends BaseDialog{ table.field((x ? shiftX : shiftY) + "", value -> { int val = Integer.parseInt(value); if(x) shiftX = val; else shiftY = val; - }).valid(Strings::canParseInt).maxTextLength(3); + }).valid(Strings::canParseInt).maxTextLength(4); table.row(); }