Class BiomeChange3D

java.lang.Object
com.sk89q.worldedit.history.change.BiomeChange3D
All Implemented Interfaces:
Change

public class BiomeChange3D extends Object implements Change
Represents a biome change that may be undone or replayed.

This biome change does not have an Extent assigned to it because one will be taken from the passed UndoContext. If the context does not have an extent (it is null), cryptic errors may occur.

  • Constructor Details

    • BiomeChange3D

      public BiomeChange3D(BlockVector3 position, BiomeType previous, BiomeType current)
      Create a new biome change.
      Parameters:
      position - the position
      previous - the previous biome
      current - the current biome
  • Method Details