コード例 #1
0
 @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;
 }
コード例 #2
0
 @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;
 }
コード例 #3
0
 @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);
   }
 }