Clearer Building Damage Multiplier Stat (#7471)

This commit is contained in:
MEEPofFaith
2022-11-07 17:59:47 -05:00
committed by GitHub
parent 3c7ddc8375
commit 68434ad42e
@@ -350,7 +350,8 @@ public class StatValues{
} }
if(type.buildingDamageMultiplier != 1){ if(type.buildingDamageMultiplier != 1){
sep(bt, Core.bundle.format("bullet.buildingdamage", (int)(type.buildingDamageMultiplier * 100))); int val = (int)(type.buildingDamageMultiplier * 100 - 100);
sep(bt, Core.bundle.format("bullet.buildingdamage", (val > 0 ? "+" : "") + val));
} }
if(type.rangeChange != 0 && !compact){ if(type.rangeChange != 0 && !compact){