From b85a954e966dc5832d2c060e26a1a0cd265a4969 Mon Sep 17 00:00:00 2001 From: James Miller Date: Wed, 12 Dec 2018 00:06:49 -0800 Subject: [PATCH] When adding quartz pillar orientation, I assumed the top orientation was correct, when it was actually the side. see: https://github.com/overviewer/Minecraft-Overviewer/pull/1502 --- overviewer_core/world.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/overviewer_core/world.py b/overviewer_core/world.py index 47f894a..4170bae 100644 --- a/overviewer_core/world.py +++ b/overviewer_core/world.py @@ -813,9 +813,9 @@ class RegionSet(object): data |= 8 elif key == 'minecraft:quartz_pillar': axis = palette_entry['Properties']['axis'] - if axis == 'z': - data = 3 if axis == 'x': + data = 3 + if axis == 'z': data = 4 elif key in ['minecraft:redstone_torch','minecraft:redstone_wall_torch','minecraft:wall_torch']: if key.startswith('minecraft:redstone_') and palette_entry['Properties']['lit'] == 'true':