FakeBrushChunk now has a fake Biomes.

Maybe someday we'll proxy the world's Biomes here and update them as the cursor moves?  Naaaah, too much mesh rebuilding.
This commit is contained in:
David Vierra 2015-04-17 23:44:38 -10:00
parent 4bdd1eeb1b
commit 51c0abc84f

View File

@ -202,6 +202,7 @@ class FakeBrushChunk(object):
self.dimension = world
self.cx = cx
self.cz = cz
self.Biomes = numpy.zeros((16, 16), numpy.uint8)
@property
def blocktypes(self):