mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-03 12:53:48 +07:00
Clearer Building Damage Multiplier Stat (#7471)
This commit is contained in:
parent
3c7ddc8375
commit
68434ad42e
@ -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){
|
||||
|
Loading…
Reference in New Issue
Block a user