Add commas to ground item quantities

This commit is contained in:
William Metcalf
2018-05-21 19:20:31 -04:00
committed by Adam
parent 0d63b94202
commit 7fdce3a12c

View File

@@ -157,7 +157,9 @@ public class GroundItemsOverlay extends Overlay
}
else
{
itemStringBuilder.append(" (").append(item.getQuantity()).append(")");
itemStringBuilder.append(" (")
.append(StackFormatter.quantityToStackSize(item.getQuantity()))
.append(")");
}
}