@Override public boolean setBlock(int x, int y, int z, int id, int data) { if (WEManager.IMP.maskContains(mask, x, z)) { return super.setBlock(x, y, z, id, data); } return false; }
@Override public boolean setBiome(int x, int z, BaseBiome biome) { if (WEManager.IMP.maskContains(mask, x, z)) { return super.setBiome(x, z, biome); } return false; }
@Override public void setEntity(int x, int y, int z, CompoundTag tag) { if (WEManager.IMP.maskContains(mask, x, z)) { super.setEntity(x, y, z, tag); } }