Merge pull request #2262 from Quezler/patch-41

Remove some spaces
This commit is contained in:
Anuken 2020-07-24 13:49:34 -04:00 committed by GitHub
commit f1cf8b2849
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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