From 5f8d5ca7bcd5f10a21eaa6ce947c1b33d3e48ab7 Mon Sep 17 00:00:00 2001 From: Ean McLaughlin Date: Tue, 2 Sep 2014 18:48:31 -0600 Subject: [PATCH] Forgot texture file extensions in a couple places. --- overviewer_core/textures.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/overviewer_core/textures.py b/overviewer_core/textures.py index 284974e..f81665d 100644 --- a/overviewer_core/textures.py +++ b/overviewer_core/textures.py @@ -1589,7 +1589,7 @@ def slabs(self, blockid, data): top = side = self.load_image_texture("assets/minecraft/textures/blocks/sandstone_top.png") else: return None - + elif blockid == 182: # single red sandstone slab if texture == 0: top = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_top.png") @@ -1602,7 +1602,7 @@ def slabs(self, blockid, data): top = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_top.png") side = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_normal.png") elif texture == 8: # 'full' red sandstone (smooth) - top = side = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_top"); + top = side = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_top.png"); else: return None @@ -1781,7 +1781,7 @@ def stairs(self, blockid, data): elif blockid == 164: # dark oak stairs texture = self.load_image_texture("assets/minecraft/textures/blocks/planks_big_oak.png").copy() elif blockid == 180: # red sandstone stairs - texture = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_normal").copy() + texture = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_normal.png").copy() outside_l = texture.copy() outside_r = texture.copy() @@ -1794,7 +1794,7 @@ def stairs(self, blockid, data): elif blockid == 156: texture = self.load_image_texture("assets/minecraft/textures/blocks/quartz_block_top.png").copy() elif blockid == 180: - texture = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_top").copy() + texture = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_top.png").copy() slab_top = texture.copy()