Removed unused stat

This commit is contained in:
Anuken
2026-03-03 22:05:27 -05:00
parent 8232e5aa52
commit d3b4943c55
3 changed files with 2 additions and 3 deletions

View File

@@ -795,7 +795,7 @@ public class UnitType extends UnlockableContent implements Senseable{
if(legSplashDamage > 0 && legSplashRange > 0){
stats.add(Stat.legSplashDamage, table -> {
table.add((String)(Core.bundle.format("bullet.splashdamage", Strings.autoFixed(legSplashDamage, 2),
table.add((Core.bundle.format("bullet.splashdamage", Strings.autoFixed(legSplashDamage, 2),
Strings.autoFixed(legSplashRange / tilesize, 2))).replace("[stat]", "[white]") + " " + StatUnit.perLeg.localized());
});
}

View File

@@ -86,7 +86,6 @@ public class Stat implements Comparable<Stat>{
reload = new Stat("reload", StatCat.function),
crushDamage = new Stat("crushDamage", StatCat.function),
legSplashDamage = new Stat("legSplashDamage", StatCat.function),
legSplashRange = new Stat("legSplashRange", StatCat.function),
targetsAir = new Stat("targetsAir", StatCat.function),
targetsGround = new Stat("targetsGround", StatCat.function),
damage = new Stat("damage", StatCat.function),