From bd40aeda3deefe79726032a4717de4d37e860872 Mon Sep 17 00:00:00 2001 From: Nicolas F Date: Sun, 7 Apr 2019 20:21:45 +0200 Subject: [PATCH] textures: set prismarine slabs to transparent This fixes upper slabs removing the block below them. --- overviewer_core/textures.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/overviewer_core/textures.py b/overviewer_core/textures.py index 42eb33b..b11d4a0 100644 --- a/overviewer_core/textures.py +++ b/overviewer_core/textures.py @@ -1708,7 +1708,8 @@ block(blockid=42, top_image="assets/minecraft/textures/block/iron_block.png") # double slabs and slabs # these wooden slabs are unobtainable without cheating, they are still # here because lots of pre-1.3 worlds use this blocks, add prismarine slabs -@material(blockid=[43, 44, 181, 182, 204, 205,11340,11341,11342], data=range(16), transparent=(44,182,205), solid=True) +@material(blockid=[43, 44, 181, 182, 204, 205, 11340, 11341, 11342], data=range(16), + transparent=(44, 182, 205, 11340, 11341, 11342), solid=True) def slabs(self, blockid, data): if blockid == 44 or blockid == 182: texture = data & 7