Forgot texture file extensions in a couple places.
This commit is contained in:
committed by
Andrew Chin
parent
ed09c5c965
commit
5f8d5ca7bc
@@ -1589,7 +1589,7 @@ def slabs(self, blockid, data):
|
|||||||
top = side = self.load_image_texture("assets/minecraft/textures/blocks/sandstone_top.png")
|
top = side = self.load_image_texture("assets/minecraft/textures/blocks/sandstone_top.png")
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
elif blockid == 182: # single red sandstone slab
|
elif blockid == 182: # single red sandstone slab
|
||||||
if texture == 0:
|
if texture == 0:
|
||||||
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")
|
||||||
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user