mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
SPIGOT-3664: Add Material getter to ChunkSnapshot
This commit is contained in:
parent
558c5a348c
commit
cfd6933002
@ -1,6 +1,7 @@
|
||||
package org.bukkit.craftbukkit;
|
||||
|
||||
import org.bukkit.ChunkSnapshot;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.block.Biome;
|
||||
import org.bukkit.craftbukkit.block.CraftBlock;
|
||||
|
||||
@ -52,6 +53,11 @@ public class CraftChunkSnapshot implements ChunkSnapshot {
|
||||
return worldname;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Material getBlockType(int x, int y, int z) {
|
||||
return Material.getMaterial(getBlockTypeId(x, y, z));
|
||||
}
|
||||
|
||||
public final int getBlockTypeId(int x, int y, int z) {
|
||||
return blockids[y >> 4][((y & 0xF) << 8) | (z << 4) | x];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user