SPIGOT-6719: Add getTileEntities() to LimitedRegion

This commit is contained in:
DerFrZocker 2021-08-30 18:44:39 +10:00 committed by md_5
parent ea7b3a0d80
commit d99a585cb4
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -1,7 +1,9 @@
package org.bukkit.generator;
import java.util.List;
import org.bukkit.Location;
import org.bukkit.RegionAccessor;
import org.bukkit.block.BlockState;
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.
*/
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();
}