use of com.sk89q.worldedit.history.change.BiomeChange3D in project FastAsyncWorldEdit by IntellectualSites.
the class ChangeSetExtent method setBiome.
@Override
public boolean setBiome(BlockVector3 position, BiomeType biome) {
BiomeType previous = getBiome(position);
changeSet.add(new BiomeChange3D(position, previous, biome));
return super.setBiome(position, biome);
}
Aggregations