Backport compressed sieve fix
This commit is contained in:
parent
425ba948a4
commit
c2f04c5c48
|
|
@ -160,7 +160,7 @@ public abstract class AbstractSieveBlockEntity extends EBlockEntity implements S
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((x | z) != 0) {
|
if ((x | z) != 0) {
|
||||||
if (level.getBlockEntity(cursor) instanceof SieveBlockEntity other) {
|
if (level.getBlockEntity(cursor) instanceof AbstractSieveBlockEntity other && other.getType() == getType()) {
|
||||||
var otherLogic = other.logic;
|
var otherLogic = other.logic;
|
||||||
|
|
||||||
if (otherLogic.getContents().isEmpty()) {
|
if (otherLogic.getContents().isEmpty()) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user