13
0
geforkt von Mirrors/Paper

Light levels are bytes

By: Dinnerbone <dinnerbone@dinnerbone.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2011-01-03 03:25:58 +00:00
Ursprung 40fe64d5d7
Commit 734b691ee8

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