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 ddf3b71592
commit 57a69bf9ad
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 {