Alter default behavior when no SkyLight to 'full' vs 'none'

This commit is contained in:
Mike Primm 2019-12-15 12:18:52 -06:00
parent deb81d984b
commit 70ae3fbc37
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ public class MapChunkCache114_1 extends AbstractMapChunkCache {
public StdSection() {
states = new DynmapBlockState[BLOCKS_PER_SECTION];
Arrays.fill(states, DynmapBlockState.AIR);
skylight = emptyData;
skylight = fullData;
emitlight = emptyData;
}
@Override

View File

@ -85,7 +85,7 @@ public class MapChunkCache114 extends AbstractMapChunkCache {
public StdSection() {
states = new DynmapBlockState[BLOCKS_PER_SECTION];
Arrays.fill(states, DynmapBlockState.AIR);
skylight = emptyData;
skylight = fullData;
emitlight = emptyData;
}
@Override

View File

@ -88,7 +88,7 @@ public class MapChunkCache115 extends AbstractMapChunkCache {
public StdSection() {
states = new DynmapBlockState[BLOCKS_PER_SECTION];
Arrays.fill(states, DynmapBlockState.AIR);
skylight = emptyData;
skylight = fullData;
emitlight = emptyData;
}
@Override