Allow ^ mask to be used between blocks that may have different properties, only keeping the shared properties

Fixes #1092
This commit is contained in:
dordsor21
2021-06-10 12:46:19 +01:00
parent dd217fcb70
commit 71130025e8
3 changed files with 6 additions and 8 deletions

View File

@ -308,7 +308,7 @@ public class BlockState implements BlockStateHolder<BlockState>, Pattern {
newState = newState.with(key, other.getState(key));
}
}
return this;
return newState;
}
@Override