Add smooth-lighting global setting (switch on smooth lighting on all)

This commit is contained in:
Mike Primm 2012-02-10 00:44:04 -06:00
parent 9de06b6e1f
commit 354fac0ddc
2 changed files with 7 additions and 0 deletions

View file

@ -312,6 +312,10 @@ public class NewMapChunkCache implements MapChunkCache {
public int getWorldHeight() {
return worldheight;
}
@Override
public long getBlockKey() {
return (((chunkindex * worldheight) + y) << 8) | (bx << 4) | bz;
}
}
private class OurEndMapIterator extends OurMapIterator {