Fix biome sending

This commit is contained in:
Jesse Boyd
2019-11-14 19:21:28 +00:00
parent b38ff03ca6
commit 601890fe64
8 changed files with 80 additions and 26 deletions

View File

@ -38,6 +38,10 @@ public interface IChunkSet extends IBlocks, OutputExtent {
BiomeType[] getBiomes();
default boolean hasBiomes() {
return getBiomes() != null;
}
@Override
BiomeType getBiomeType(int x, int z);