diff --git a/core/src/mindustry/world/meta/values/AmmoListValue.java b/core/src/mindustry/world/meta/values/AmmoListValue.java index 3e39819dc0..406d20a598 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.damage) + " " + 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)); }