From 2db142964444f239c3f350ea30ee5259930fe3d6 Mon Sep 17 00:00:00 2001 From: ErrorInCode <43973418+Error-In-Code@users.noreply.github.com> Date: Thu, 16 Jun 2022 09:26:54 -0400 Subject: [PATCH] fix missing StatUnit (#7027) --- core/src/mindustry/world/blocks/production/WallCrafter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/production/WallCrafter.java b/core/src/mindustry/world/blocks/production/WallCrafter.java index 0f43bf7e8a..a5390beb0c 100644 --- a/core/src/mindustry/world/blocks/production/WallCrafter.java +++ b/core/src/mindustry/world/blocks/production/WallCrafter.java @@ -64,7 +64,7 @@ public class WallCrafter extends Block{ stats.add(Stat.output, output); stats.add(Stat.tiles, StatValues.blocks(attribute, floating, 1f, true, false)); - stats.add(Stat.drillSpeed, 60f / drillTime * size); + stats.add(Stat.drillSpeed, 60f / drillTime * size, StatUnit.itemsSecond); } @Override