Can't query the row directly

This commit is contained in:
Matthew Miller 2018-12-28 18:06:41 +10:00
parent 59f78b3cdf
commit 862b63d43a

View File

@ -129,7 +129,8 @@ public class BlockState implements BlockStateHolder<BlockState> {
@Override
public <V> BlockState with(final Property<V> property, final V value) {
return states.row(property).getOrDefault(value, this);
BlockState result = states.get(property, value);
return result == null ? this : result;
}
@Override