From b2e0d6da28ccfc37ce66dfd456069056649b3611 Mon Sep 17 00:00:00 2001 From: joe-mojo Date: Mon, 14 Oct 2013 00:49:24 +0200 Subject: [PATCH] trying to fix Travis build about chest texture not found. When normal.png from texture pack not found, fall back to chest.png --- overviewer_core/textures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/textures.py b/overviewer_core/textures.py index 2557ca1..b8bfddc 100644 --- a/overviewer_core/textures.py +++ b/overviewer_core/textures.py @@ -1809,7 +1809,7 @@ def chests(self, blockid, data): try: t = self.load_image("normal.png") except (TextureException, IOError): - t = self.load_image("trap_small.png") + t = self.load_image("chest.png") # the textures is no longer in terrain.png, get it from # item/chest.png and get by cropping all the needed stuff