From 7a0e772a05d79e4cf333b07b5d8f2d6811394469 Mon Sep 17 00:00:00 2001 From: MEEP of Faith <54301439+MEEPofFaith@users.noreply.github.com> Date: Tue, 30 Mar 2021 07:22:08 -0700 Subject: [PATCH] Remove space between `damage` and `/sec` (#5024) --- core/src/mindustry/world/meta/values/AmmoListValue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/meta/values/AmmoListValue.java b/core/src/mindustry/world/meta/values/AmmoListValue.java index 406d20a598..9a72a85a24 100644 --- a/core/src/mindustry/world/meta/values/AmmoListValue.java +++ b/core/src/mindustry/world/meta/values/AmmoListValue.java @@ -45,7 +45,7 @@ public class AmmoListValue implements StatValue{ if(type.damage > 0 && (type.collides || type.splashDamage <= 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{ bt.add(Core.bundle.format("bullet.damage", type.damage)); }