Fix integer width mismatch in analyze.py

Fixes #278
This commit is contained in:
David Vierra 2016-10-05 06:35:29 -10:00
parent 07439715ce
commit 55a83b17fd

View File

@ -26,7 +26,7 @@ class AnalyzeOperation(Operation):
super(AnalyzeOperation, self).__init__(dimension, selection)
self.createSections = False
self.blocks = numpy.zeros(65536, dtype='uint32')
self.blocks = numpy.zeros(65536, dtype='uintp')
self.selection = selection
self.entityCounts = defaultdict(int)
self.tileEntityCounts = defaultdict(int)