Skip to content

Commit 1beb579

Browse files
committed
textures: use new name for path block on 1.17
Fixes rendering with 1.17 textures and no 1.16 fallback, breaks rendering for anything using 1.16 textures.
1 parent 3488450 commit 1beb579

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

overviewer_core/textures.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2820,8 +2820,8 @@ def farmland(self, blockid, data):
28202820
# dirt.png is 16 pixels tall, so we need to crop it before building full block
28212821
side = side.crop((0, 1, 16, 16))
28222822
else:
2823-
top = self.load_image_texture("assets/minecraft/textures/block/grass_path_top.png")
2824-
side = self.load_image_texture("assets/minecraft/textures/block/grass_path_side.png")
2823+
top = self.load_image_texture("assets/minecraft/textures/block/dirt_path_top.png")
2824+
side = self.load_image_texture("assets/minecraft/textures/block/dirt_path_side.png")
28252825
# side already has 1 transparent pixel at the top, so it doesn't need to be modified
28262826
# just shift the top image down 1 pixel
28272827

0 commit comments

Comments
 (0)