mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2025-01-01 14:08:11 +01:00
* forgot MaskingExtent
This commit is contained in:
parent
519a95b4b9
commit
e09c0c2224
@ -79,6 +79,11 @@ public class MaskingExtent extends AbstractDelegateExtent {
|
||||
return mask.test(mutable.setComponents(position.getBlockX(), 0, position.getBlockZ())) && super.setBiome(position, biome);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean setBiome(int x, int y, int z, BaseBiome biome) {
|
||||
return mask.test(mutable.setComponents(x, y, z)) && super.setBiome(x, y, z, biome);
|
||||
}
|
||||
|
||||
public static Class<?> inject() {
|
||||
return MaskingExtent.class;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user