1
0
Fork 0

improve rendering, fix lightmap

This commit is contained in:
Sen 2025-08-31 00:30:48 +02:00
parent 82b57873c2
commit ec9173433e
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
12 changed files with 186 additions and 102 deletions

View file

@ -191,6 +191,10 @@ public abstract class World implements IWorldAccess {
return 0;
}
public int getCombinedBrightness(BlockPos pos) {
return 0;
}
public boolean setState(BlockPos pos, State state) {
return this.setState(pos, state, 3);
}