Light levels are bytes

This commit is contained in:
Dinnerbone 2011-01-03 03:25:58 +00:00
parent 7ecc3d5b4b
commit 31c5894743

View File

@ -138,11 +138,11 @@ public class CraftBlock implements Block {
} }
/** /**
* Gets the light level between 0-15. * Gets the light level between 0-15
* *
* @return light level * @return light level
*/ */
public int getLightLevel() { public byte getLightLevel() {
return light; return light;
} }