Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.robbiemilton.shade.necromancer;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.Random;
- import cpw.mods.fml.common.IWorldGenerator;
- import net.minecraft.block.Block;
- import net.minecraft.block.material.Material;
- import net.minecraft.entity.monster.EntityBlaze;
- import net.minecraft.entity.monster.EntityMagmaCube;
- import net.minecraft.entity.monster.EntityPigZombie;
- import net.minecraft.entity.monster.EntitySkeleton;
- import net.minecraft.init.Blocks;
- import net.minecraft.world.World;
- import net.minecraft.world.biome.BiomeGenBase;
- import net.minecraft.world.chunk.IChunkProvider;
- import net.minecraft.world.gen.feature.WorldGenerator;
- import net.minecraft.world.gen.structure.StructureComponent;
- import net.minecraft.world.gen.structure.StructureNetherBridgePieces;
- public class necromancerstower extends WorldGenerator implements IWorldGenerator
- {
- private ArrayList spawnList = new ArrayList();
- private World world;
- private int i;
- private int j;
- private int k;
- public necromancerstower(World world1, int i1, int j1, int k1)
- {
- this.spawnList.add(new BiomeGenBase.SpawnListEntry(EntityBlaze.class, 10, 2, 3));
- this.spawnList.add(new BiomeGenBase.SpawnListEntry(EntityPigZombie.class, 5, 4, 4));
- this.spawnList.add(new BiomeGenBase.SpawnListEntry(EntitySkeleton.class, 10, 4, 4));
- this.spawnList.add(new BiomeGenBase.SpawnListEntry(EntityMagmaCube.class, 3, 4, 4));
- world = world1;
- i = i1;
- j = j1;
- k = k1;
- }
- public ArrayList getSpawnList()
- {
- return this.spawnList;
- }
- protected Block[] GetValidSpawnBlocks()
- {
- return new Block[]
- {
- Blocks.grass,
- Blocks.stone,
- Blocks.dirt,
- };
- }
- public boolean LocationIsValidSpawn(World world, int x, int y, int z)
- {
- Block checkBlock = world.getBlock(x, y - 1, z);
- Block blockAbove = world.getBlock(x, y , z);
- Block blockBelow = world.getBlock(x, y - 2, z);
- for (Block i : GetValidSpawnBlocks())
- {
- if (blockAbove != Blocks.air)
- {
- return false;
- }
- if (checkBlock == i)
- {
- return true;
- }
- else if (checkBlock == Blocks.snow_layer && blockBelow == i)
- {
- return true;
- }
- else if (checkBlock.getMaterial() == Material.plants && blockBelow == i)
- {
- return true;
- }
- }
- return false;
- }
- public boolean generate(World world, Random rand, int x, int y, int z)
- {
- int i = rand.nextInt(1);
- if(i == 0)
- {
- create(world, rand, x, y, z);
- }
- return true;
- }
- public boolean create(World world, Random rand, int x, int y, int z)
- {
- if(!LocationIsValidSpawn(world, x, y, z) || !LocationIsValidSpawn(world, x + 21, y, z) || !LocationIsValidSpawn(world, x + 21, y, z + 25) || !LocationIsValidSpawn(world, x, y, z + 25))
- {
- return true;
- }
- world.setBlock(x + 0, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 20, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 21, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 22, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 23, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 24, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 1, z + 25, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 0, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 1, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 2, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 3, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 4, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 5, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 6, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 7, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 8, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 9, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 10, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 11, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 12, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 13, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 14, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 15, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 16, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 17, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 10, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 11, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 12, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 13, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 14, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 15, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 16, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 17, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 18, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 19, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 20, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 21, y + 2, z + 18, Blocks.air, 0, 3);
- world.setBlock(x + 0, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 1, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 2, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 3, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 4, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 5, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 6, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 7, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 8, y + 2, z + 19, Blocks.air, 0, 3);
- world.setBlock(x + 9, y + 2, z + 19, Blocks.air, 0, 3);
- new necromancerstower1().generate_r00(world, rand, x, y, z);
- return true;
- }
- @Override
- public void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator,
- IChunkProvider chunkProvider) {
- // TODO Auto-generated method stub
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment