mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 01:06:01 +01:00
SPIGOT-5250: Add ChunkSnapshot.contains
By: md_5 <git@md-5.net>
This commit is contained in:
parent
c3c7488743
commit
136363e657
1 changed files with 14 additions and 0 deletions
|
@ -58,6 +58,20 @@ public class CraftChunkSnapshot implements ChunkSnapshot {
|
|||
return worldname;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean contains(BlockData block) {
|
||||
Preconditions.checkArgument(block != null, "Block cannot be null");
|
||||
|
||||
IBlockData nms = ((CraftBlockData) block).getState();
|
||||
for (DataPaletteBlock<IBlockData> palette : blockids) {
|
||||
if (palette.a(nms)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Material getBlockType(int x, int y, int z) {
|
||||
CraftChunk.validateChunkCoordinates(x, y, z);
|
||||
|
|
Loading…
Add table
Reference in a new issue