From 1c22e2ed28ce8d0c36808f4ff71a18a37ff72fe4 Mon Sep 17 00:00:00 2001 From: buthed010203 Date: Wed, 21 Jul 2021 15:50:35 -0400 Subject: [PATCH] Update StatValues.java (#5629) Why is this number 0? The default amount should be 1, the timeperiod is already set to 0 everywhere anyways. --- core/src/mindustry/world/meta/StatValues.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/meta/StatValues.java b/core/src/mindustry/world/meta/StatValues.java index 5f83234dcf..8be545047a 100644 --- a/core/src/mindustry/world/meta/StatValues.java +++ b/core/src/mindustry/world/meta/StatValues.java @@ -96,7 +96,7 @@ public class StatValues{ for(int i = 0; i < list.size; i++){ Item item = list.get(i); - table.add(timePeriod <= 0 ? new ItemDisplay(item) : new ItemDisplay(item, 0, timePeriod, true)).padRight(5); + table.add(timePeriod <= 0 ? new ItemDisplay(item) : new ItemDisplay(item, 1, timePeriod, true)).padRight(5); if(i != list.size - 1){ table.add("/");