0

remove print

This commit is contained in:
RedSparr0w
2018-09-22 15:40:24 +12:00
parent dec61e5763
commit 1428bf150c

View File

@@ -734,10 +734,9 @@ class RegionSet(object):
data += 4
elif key.endswith('rail'):
shape = palette_entry['Properties']['shape']
print('shape:', shape)
data = {'north_south':0, 'east_west': 1, 'ascending_east': 2, 'ascending_west': 3, 'ascending_north': 4, 'ascending_south': 5, 'south_west': 6, 'south_east': 7, 'north_east': 8, 'north_west': 9}[shape]
if key == 'minecraft:powered_rail' and palette_entry['Properties']['powered'] == 'true':
data += 8
data |= 8
elif key in ['minecraft:comparator', 'minecraft:repeater']:
if palette_entry['Properties']['powered'] == 'true':
block += 1