mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-10 00:52:22 -07:00
SPIGOT-6719: Add getTileEntities() to LimitedRegion
By: DerFrZocker <derrieple@gmail.com>
This commit is contained in:
@@ -1,7 +1,9 @@
|
|||||||
package org.bukkit.generator;
|
package org.bukkit.generator;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
import org.bukkit.Location;
|
import org.bukkit.Location;
|
||||||
import org.bukkit.RegionAccessor;
|
import org.bukkit.RegionAccessor;
|
||||||
|
import org.bukkit.block.BlockState;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -42,4 +44,13 @@ public interface LimitedRegion extends RegionAccessor {
|
|||||||
* @return true if the coordinates are in the region, otherwise false.
|
* @return true if the coordinates are in the region, otherwise false.
|
||||||
*/
|
*/
|
||||||
boolean isInRegion(int x, int y, int z);
|
boolean isInRegion(int x, int y, int z);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets a list of all tile entities in the limited region including the
|
||||||
|
* buffer zone.
|
||||||
|
*
|
||||||
|
* @return a list of tile entities.
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
List<BlockState> getTileEntities();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user