This commit is contained in:
dordsor21
2021-01-15 20:16:46 +00:00
parent b450a0af80
commit 798b4cdd4e
3 changed files with 27 additions and 60 deletions

View File

@ -120,7 +120,7 @@ public interface InputExtent {
* @param position location
* @return the light level at the location
*/
default int getEmmittedLight(MutableBlockVector3 position) {
default int getEmmittedLight(BlockVector3 position) {
return getEmmittedLight(position.getX(), position.getY(), position.getZ());
}