From 7bf299bcc0e73759e2663720b0142525e8d6106e Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Fri, 24 Jul 2020 19:44:26 +0200 Subject: [PATCH] Remove some spaces --- core/src/mindustry/world/blocks/distribution/StackConveyor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/world/blocks/distribution/StackConveyor.java b/core/src/mindustry/world/blocks/distribution/StackConveyor.java index 01e335e63c..4edca42bee 100644 --- a/core/src/mindustry/world/blocks/distribution/StackConveyor.java +++ b/core/src/mindustry/world/blocks/distribution/StackConveyor.java @@ -250,7 +250,7 @@ public class StackConveyor extends Block implements Autotiler{ @Override public boolean acceptItem(Building source, Item item){ if(this == source) return true; // player threw items - if(cooldown > recharge - 1f) return false; // still cooling down + if(cooldown > recharge - 1f) return false; // still cooling down return !((state != stateLoad) // not a loading dock || (items.total() > 0 && !items.has(item)) // incompatible items || (items.total() >= getMaximumAccepted(item)) // filled to capacity