This commit is contained in:
Anuken
2020-09-30 19:55:22 -04:00
parent a0394e4382
commit f3c642d0d7
2 changed files with 4 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ public class AmmoListValue<T extends UnlockableContent> implements StatValue{
table.table(Tex.underline, bt -> {
bt.left().defaults().padRight(3).left();
if(type.damage > 0 && type.collides){
if(type.damage > 0 && (type.collides || type.splashDamage <= 0)){
bt.add(Core.bundle.format("bullet.damage", type.damage));
}