0

Forgot texture file extensions in a couple places.

This commit is contained in:
Ean McLaughlin
2014-09-02 18:48:31 -06:00
committed by Andrew Chin
parent ed09c5c965
commit 5f8d5ca7bc

View File

@@ -1602,7 +1602,7 @@ def slabs(self, blockid, data):
top = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_top.png") 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") side = self.load_image_texture("assets/minecraft/textures/blocks/red_sandstone_normal.png")
elif texture == 8: # 'full' red sandstone (smooth) 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: else:
return None return None
@@ -1781,7 +1781,7 @@ def stairs(self, blockid, data):
elif blockid == 164: # dark oak stairs elif blockid == 164: # dark oak stairs
texture = self.load_image_texture("assets/minecraft/textures/blocks/planks_big_oak.png").copy() texture = self.load_image_texture("assets/minecraft/textures/blocks/planks_big_oak.png").copy()
elif blockid == 180: # red sandstone stairs 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_l = texture.copy()
outside_r = texture.copy() outside_r = texture.copy()
@@ -1794,7 +1794,7 @@ def stairs(self, blockid, data):
elif blockid == 156: elif blockid == 156:
texture = self.load_image_texture("assets/minecraft/textures/blocks/quartz_block_top.png").copy() texture = self.load_image_texture("assets/minecraft/textures/blocks/quartz_block_top.png").copy()
elif blockid == 180: 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() slab_top = texture.copy()