mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-01 20:50:41 +01:00
Block.getLightLevel()
This commit is contained in:
parent
853d00fe98
commit
fe34bbbb10
1 changed files with 23 additions and 0 deletions
|
@ -11,6 +11,7 @@ public class CraftBlock implements Block {
|
||||||
private final int z;
|
private final int z;
|
||||||
protected int type;
|
protected int type;
|
||||||
protected byte data;
|
protected byte data;
|
||||||
|
protected byte light;
|
||||||
|
|
||||||
protected CraftBlock(final CraftWorld world, final int x, final int y, final int z, final int type, final byte data) {
|
protected CraftBlock(final CraftWorld world, final int x, final int y, final int z, final int type, final byte data) {
|
||||||
this.world = world;
|
this.world = world;
|
||||||
|
@ -19,6 +20,19 @@ public class CraftBlock implements Block {
|
||||||
this.z = z;
|
this.z = z;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.data = data;
|
this.data = data;
|
||||||
|
this.light = (byte)world.getHandle().i(x, y, z);
|
||||||
|
this.chunk = (CraftChunk)world.getChunkAt(x << 4, z << 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected CraftBlock(final CraftWorld world, final int x, final int y,
|
||||||
|
final int z, final int type, final byte data, final byte light) {
|
||||||
|
this.world = world;
|
||||||
|
this.x = x;
|
||||||
|
this.y = y;
|
||||||
|
this.z = z;
|
||||||
|
this.type = type;
|
||||||
|
this.data = data;
|
||||||
|
this.light = light;
|
||||||
this.chunk = (CraftChunk)world.getChunkAt(x << 4, z << 4);
|
this.chunk = (CraftChunk)world.getChunkAt(x << 4, z << 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,6 +136,15 @@ public class CraftBlock implements Block {
|
||||||
public int getTypeID() {
|
public int getTypeID() {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the light level between 0-15.
|
||||||
|
*
|
||||||
|
* @return light level
|
||||||
|
*/
|
||||||
|
public int getLightLevel() {
|
||||||
|
return light;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the block at the given face
|
* Gets the block at the given face
|
||||||
|
|
Loading…
Reference in a new issue