Merge pull request #1 from PolyhedralDev/ver/6.0.0

Ver/6.0.0
This commit is contained in:
Astrashh
2021-05-11 10:59:44 +10:00
committed by GitHub
164 changed files with 4126 additions and 1192 deletions
@@ -19,7 +19,6 @@ import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
public class DirectWorld implements World {
private final long seed;
@@ -46,21 +45,6 @@ public class DirectWorld implements World {
return generator;
}
@Override
public String getName() {
return null;
}
@Override
public UUID getUID() {
return null;
}
@Override
public boolean isChunkGenerated(int x, int z) {
return false;
}
@Override
public Chunk getChunkAt(int x, int z) {
MCAFile file = compute(x, z);
@@ -72,11 +56,6 @@ public class DirectWorld implements World {
return new DirectChunkData(chunk, this, x, z);
}
@Override
public File getWorldFolder() {
return null;
}
@Override
public Block getBlockAt(int x, int y, int z) {
return new DirectBlock(this, new Vector3(x, y, z));