mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-13 15:08:35 +00:00
Added support for non-128 worldheights
This commit is contained in:
@ -20,6 +20,7 @@
|
||||
package com.sk89q.worldedit.regions;
|
||||
|
||||
import com.sk89q.worldedit.BlockVector;
|
||||
import com.sk89q.worldedit.LocalWorld;
|
||||
import com.sk89q.worldedit.Vector;
|
||||
import com.sk89q.worldedit.Vector2D;
|
||||
import java.util.Set;
|
||||
@ -101,4 +102,18 @@ public interface Region extends Iterable<BlockVector> {
|
||||
* @return
|
||||
*/
|
||||
public Set<Vector2D> getChunks();
|
||||
|
||||
/**
|
||||
* Get the world the selection is in
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public LocalWorld getWorld();
|
||||
|
||||
/**
|
||||
* Sets the world the selection is in
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public void setWorld(LocalWorld world);
|
||||
}
|
||||
|
Reference in New Issue
Block a user