this needs to be a TAG_Short

This commit is contained in:
unknown 2010-09-06 15:42:26 -10:00
parent e93a0279d9
commit 4504a2ba31

View File

@ -933,9 +933,9 @@ class MCSchematic (MCLevel):
else:
assert shape != None
root_tag = TAG_Compound(name="Schematic")
root_tag[Height] = TAG_Int(shape[1])
root_tag[Length] = TAG_Int(shape[2])
root_tag[Width] = TAG_Int(shape[0])
root_tag[Height] = TAG_Short(shape[1])
root_tag[Length] = TAG_Short(shape[2])
root_tag[Width] = TAG_Short(shape[0])
root_tag[Entities] = TAG_List()
root_tag[TileEntities] = TAG_List()