Skip to content

Commit

Permalink
Fix integer width mismatch in analyze.py
Browse files Browse the repository at this point in the history
Fixes #278
  • Loading branch information
codewarrior0 committed Oct 5, 2016
1 parent 0743971 commit 55a83b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mceditlib/operations/analyze.py
Expand Up @@ -26,7 +26,7 @@ def __init__(self, dimension, selection):
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)
Expand Down

0 comments on commit 55a83b1

Please sign in to comment.