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

Dieser Commit ist enthalten in:
MattBDev 2020-03-22 14:05:51 -04:00
Ursprung ae57dd5d61
Commit 7ef02dfbde

Datei anzeigen

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