mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-11 20:13:55 +00:00
Can't query the row directly
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user