diff --git a/core/src/mindustry/world/blocks/distribution/Sorter.java b/core/src/mindustry/world/blocks/distribution/Sorter.java index 8fa77bb230..32b13be399 100644 --- a/core/src/mindustry/world/blocks/distribution/Sorter.java +++ b/core/src/mindustry/world/blocks/distribution/Sorter.java @@ -88,7 +88,7 @@ public class Sorter extends Block{ boolean isSame(Building other){ //uncomment code below to prevent sorter/gate chaining - return other != null && (other.block() instanceof Sorter/* || other.block() instanceof OverflowGate */); + return other != null && (other.block() instanceof Sorter || other.block() instanceof OverflowGate); } Building getTileTarget(Item item, Building source, boolean flip){