Clearer Building Damage Multiplier Stat (#7471)

This commit is contained in:
MEEPofFaith 2022-11-07 14:59:47 -08:00 committed by GitHub
parent 3c7ddc8375
commit 68434ad42e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -350,7 +350,8 @@ public class StatValues{
}
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){