Default undefined skylight to 'full'

This commit is contained in:
Mike Primm 2020-05-19 10:45:09 -05:00
parent 747ec85a0c
commit 4d310828dd
3 changed files with 3 additions and 3 deletions

View File

@ -86,7 +86,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

@ -86,7 +86,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

@ -89,7 +89,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