Remove space between damage and /sec (#5024)

This commit is contained in:
MEEP of Faith 2021-03-30 07:22:08 -07:00 committed by GitHub
parent 7f3b8f7e56
commit 7a0e772a05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ public class AmmoListValue<T extends UnlockableContent> implements StatValue{
if(type.damage > 0 && (type.collides || type.splashDamage <= 0)){ if(type.damage > 0 && (type.collides || type.splashDamage <= 0)){
if(type.continuousDamage() > 0){ if(type.continuousDamage() > 0){
bt.add(Core.bundle.format("bullet.damage", type.continuousDamage()) + " " + StatUnit.perSecond.localized()); bt.add(Core.bundle.format("bullet.damage", type.continuousDamage()) + StatUnit.perSecond.localized());
}else{ }else{
bt.add(Core.bundle.format("bullet.damage", type.damage)); bt.add(Core.bundle.format("bullet.damage", type.damage));
} }