Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 02:50:06 +01:00
Can't query the row directly
Dieser Commit ist enthalten in:
Ursprung
59f78b3cdf
Commit
862b63d43a
@ -129,7 +129,8 @@ public class BlockState implements BlockStateHolder<BlockState> {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public <V> BlockState with(final Property<V> property, final V value) {
|
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
|
@Override
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren