mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-05 11:36:01 +02:00
Light levels are bytes
This commit is contained in:
parent
7ecc3d5b4b
commit
31c5894743
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user