13
0
geforkt von Mirrors/Paper

Light levels are bytes

Dieser Commit ist enthalten in:
Dinnerbone 2011-01-03 03:25:58 +00:00
Ursprung 7ecc3d5b4b
Commit 31c5894743

Datei anzeigen

@ -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;
} }