Fixed inverted sorter chains

This commit is contained in:
Anuken
2019-11-19 19:16:35 -05:00
parent 4ce494cc22
commit cc7aaae52c
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ public class Sorter extends Block{
}
boolean isSame(Tile tile, Tile other){
return other != null && other.block() instanceof Sorter && other.<SorterEntity>entity().sortItem == tile.<SorterEntity>entity().sortItem;
return other != null && other.block() instanceof Sorter;
}
Tile getTileTarget(Item item, Tile dest, Tile source, boolean flip){