mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-19 05:51:58 +01:00
SPIGOT-5250: Add ChunkSnapshot.contains
By: md_5 <git@md-5.net>
This commit is contained in:
parent
c3c7488743
commit
136363e657
@ -58,6 +58,20 @@ public class CraftChunkSnapshot implements ChunkSnapshot {
|
|||||||
return worldname;
|
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
|
@Override
|
||||||
public Material getBlockType(int x, int y, int z) {
|
public Material getBlockType(int x, int y, int z) {
|
||||||
CraftChunk.validateChunkCoordinates(x, y, z);
|
CraftChunk.validateChunkCoordinates(x, y, z);
|
||||||
|
Loading…
Reference in New Issue
Block a user