mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-08-29 21:30:43 +00:00
add default #resolution method in BiomeProvider
This commit is contained in:
@@ -103,4 +103,8 @@ public interface BiomeProvider {
|
|||||||
default ChunkLocalCachingBiomeProvider caching(WorldProperties worldProperties, int chunkX, int chunkZ) {
|
default ChunkLocalCachingBiomeProvider caching(WorldProperties worldProperties, int chunkX, int chunkZ) {
|
||||||
return new ChunkLocalCachingBiomeProvider(this, worldProperties, chunkX, chunkZ);
|
return new ChunkLocalCachingBiomeProvider(this, worldProperties, chunkX, chunkZ);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
default int resolution() {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user