fill zero chunks with white light instead of darkness
This commit is contained in:
parent
2f81e8469a
commit
bae486d35b
@ -1188,10 +1188,10 @@ class ZeroChunk:
|
||||
def load(self): pass
|
||||
def __init__(self, height=512):
|
||||
zeroChunk = zeros((16,16,height), uint8)
|
||||
|
||||
whiteLight = zeroChunk + 15;
|
||||
self.Blocks = zeroChunk
|
||||
self.BlockLight = zeroChunk
|
||||
self.SkyLight = zeroChunk
|
||||
self.BlockLight = whiteLight
|
||||
self.SkyLight = whiteLight
|
||||
self.Data = zeroChunk
|
||||
HeightMap = zeros((16,16),uint8)
|
||||
|
||||
|
Reference in New Issue
Block a user