Merge pull request #2271 from Dexapnow/patch-6

Remove "sortersnek"
This commit is contained in:
Anuken
2020-07-28 11:14:42 -04:00
committed by GitHub

View File

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