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); } }
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); } }