Lighting in AyncBlock is set to 15 (at least for now)

This commit is contained in:
MattBDev 2020-03-22 14:05:51 -04:00
parent ae57dd5d61
commit 7ef02dfbde

View File

@ -121,17 +121,17 @@ public class AsyncBlock implements Block {
@Override
public byte getLightLevel() {
return (byte) world.getLight(x, y, z);
return (byte) 15;
}
@Override
public byte getLightFromSky() {
return (byte) world.getSkyLight(x, y, z);
return (byte) 15;
}
@Override
public byte getLightFromBlocks() {
return (byte) world.getBlockLight(x, y, z);
return (byte) 15;
}
@NotNull @Override