1
0
Fork 0

Revert "experimental new rendering"

This reverts commit 2006e31a71.
This commit is contained in:
Sen 2025-08-30 22:33:55 +02:00
parent 2006e31a71
commit 82b57873c2
Signed by: sen
GPG key ID: 3AC50A6F47D1B722
96 changed files with 3105 additions and 1659 deletions

View file

@ -8,5 +8,5 @@ public interface IWorldAccess extends IBlockAccess
{
TileEntity getTileEntity(BlockPos pos);
@Clientside
int getWorldLight(BlockPos pos);
int getCombinedLight(BlockPos pos);
}

View file

@ -187,7 +187,7 @@ public abstract class World implements IWorldAccess {
public void checkBlockLight(BlockPos pos) {
}
public int getWorldLight(BlockPos pos) {
public int getCombinedLight(BlockPos pos) {
return 0;
}