Use more MutableBlockVector3s

This commit is contained in:
dordsor21
2021-08-11 14:56:10 +01:00
parent 6f5430a940
commit 3ba42df321
17 changed files with 206 additions and 98 deletions

View File

@ -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