From b513977a794c58d5fde3a9f2204169190c4bfee2 Mon Sep 17 00:00:00 2001 From: Alejandro Aguilera Date: Thu, 21 Apr 2011 01:28:14 +0200 Subject: [PATCH] Fix textures for saplings. --- textures.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/textures.py b/textures.py index 850185c..ac214b5 100644 --- a/textures.py +++ b/textures.py @@ -439,12 +439,12 @@ def generate_special_texture(blockID, data): if blockID == 6: # saplings if data == 1: # spruce sapling - toptexture = terrain_images[64] - sidetexture = terrain_images[64] + toptexture = terrain_images[63] + sidetexture = terrain_images[63] if data == 2: # birch sapling - toptexture = terrain_images[80] - sidetexture = terrain_images[80] + toptexture = terrain_images[79] + sidetexture = terrain_images[79] else: # usual and future saplings toptexture = terrain_images[15]