예제 #1
0
 public static void doSparkleEffectsAround(World world, int x, int y, int z) {
   for (ChunkCoordinates cc : MiscUtils.getCoordinatesAround(new ChunkCoordinates(x, y, z))) {
     doSparkleEffects(world, cc.posX, cc.posY, cc.posZ);
   }
 }
예제 #2
0
 public static void doSmokeEffectsAround(World world, int x, int y, int z, float size) {
   for (ChunkCoordinates cc : MiscUtils.getCoordinatesAround(new ChunkCoordinates(x, y, z))) {
     doSmokeEffects(world, cc.posX, cc.posY, cc.posZ, size);
   }
 }