TerraChunkGenerator -> ChunkGenerator

This commit is contained in:
dfsek
2021-07-22 18:30:44 -07:00
parent f659c32749
commit 4da5ce748d
13 changed files with 31 additions and 33 deletions

View File

@@ -9,7 +9,7 @@ import com.dfsek.terra.api.vector.Vector3;
import com.dfsek.terra.api.world.Chunk;
import com.dfsek.terra.api.world.World;
import com.dfsek.terra.api.world.biome.generation.BiomeProvider;
import com.dfsek.terra.api.world.generator.TerraChunkGenerator;
import com.dfsek.terra.api.world.generator.ChunkGenerator;
public class DummyWorld implements World {
@Override
@@ -58,7 +58,7 @@ public class DummyWorld implements World {
}
@Override
public TerraChunkGenerator getGenerator() {
public ChunkGenerator getGenerator() {
throw new UnsupportedOperationException("Cannot get generator of DummyWorld");
}