I hope these are the last few errors

This commit is contained in:
MattBDev
2019-10-03 20:27:19 -04:00
parent f963e63f58
commit 51a5c22677
6 changed files with 44 additions and 20 deletions

View File

@ -87,11 +87,20 @@ public class NullWorld extends AbstractWorld {
return false;
}
@Override
public BiomeType getBiome(BlockVector2 position) {
return BiomeTypes.THE_VOID;
}
@Override
public BiomeType getBiomeType(int x, int z) {
return BiomeTypes.THE_VOID;
}
@Override
public boolean setBiome(BlockVector2 position, BiomeType biome) {
return false;
}
@Override
public boolean setBiome(int x, int y, int z, BiomeType biome) {
return false;