add 1.14 depend (non functional)

This commit is contained in:
Jesse Boyd
2019-06-29 14:06:19 +10:00
parent 2b0a310e0e
commit a4344fb2df
12 changed files with 161 additions and 158 deletions

View File

@ -84,10 +84,10 @@ public interface InputExtent {
* @return the biome at the location
*/
default BiomeType getBiome(BlockVector2 position) {
return getBiome(position.getX(), position.getZ());
return getBiomeType(position.getX(), position.getZ());
}
default BiomeType getBiome(int x, int z) {
default BiomeType getBiomeType(int x, int z) {
return getBiome(MutableBlockVector2.get(x, z));
}
}