fix NMS queue palette size

This commit is contained in:
Jesse Boyd
2019-04-14 21:43:06 +10:00
parent b3e1076868
commit fab197034e
3 changed files with 11 additions and 3 deletions

View File

@ -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())) {