Block.getLightLevel()

Dieser Commit ist enthalten in:
sk89q 2011-01-02 18:30:46 -08:00 committet von Dinnerbone
Ursprung 853d00fe98
Commit fe34bbbb10

Datei anzeigen

@ -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);
} }
@ -123,6 +137,15 @@ public class CraftBlock implements Block {
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
* *