mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-12 15:38:35 +00:00
Use more MutableBlockVector3s
This commit is contained in:
@ -122,7 +122,9 @@ public class RequestExtent implements Extent {
|
||||
|
||||
@Override
|
||||
public boolean setBiome(int x, int y, int z, BiomeType biome) {
|
||||
return getExtent().setBiome(BlockVector3.at(x, y, z), biome);
|
||||
//FAWE start - no BV3
|
||||
return getExtent().setBiome(x, y, z, biome);
|
||||
//FAWE end
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user