The void generator class:
public class VoidGenerator extends ChunkGenerator
{
@SuppressWarnings("deprecation")
public byte[] generate(World w, Random rand, int x, int z)
{
byte[] result = new byte[32768]; //chunksized array filled with 0 - Air
//Build a...