mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-11 20:13:55 +00:00
fix NMS queue palette size
This commit is contained in:
@ -87,6 +87,14 @@ public class MaskedFaweQueue extends DelegateFaweQueue {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setBiome(int x, int y, int z, BiomeType biome) {
|
||||
if (region.contains(x, y, z)) {
|
||||
return super.setBiome(x, y, z, biome);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setBiome(BlockVector2 position, BiomeType biome) {
|
||||
if (region.contains(position.getBlockX(), position.getBlockZ())) {
|
||||
|
Reference in New Issue
Block a user