This commit is contained in:
dfsek 2022-06-17 01:22:07 -07:00
parent d2055d60fd
commit 9ced14b813
2 changed files with 0 additions and 13 deletions

View File

@ -1,12 +0,0 @@
package com.dfsek.terra.cli.generator;
import com.dfsek.terra.api.world.chunk.generation.ChunkGenerator;
import com.dfsek.terra.api.world.chunk.generation.util.GeneratorWrapper;
public class CLIChunkGenerator implements GeneratorWrapper {
@Override
public ChunkGenerator getHandle() {
return null;
}
}

View File

@ -16,7 +16,6 @@ public class Region implements NBTSerializable<MCAFile> {
this.z = z;
this.world = world;
this.chunks = new CLIChunk[32 * 32];
;
}
public CLIChunk get(int x, int z) {