mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-11 20:13:55 +00:00
add 1.14 depend (non functional)
This commit is contained in:
@ -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));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user