From 85c439b68c4e58a84d289d0a8b225efd40504aa3 Mon Sep 17 00:00:00 2001 From: Alejandro Aguilera Date: Fri, 1 Jun 2012 14:14:40 +0200 Subject: [PATCH] Add emerald block, improve the looking of the brewing stand. --- overviewer_core/textures.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/overviewer_core/textures.py b/overviewer_core/textures.py index 9eeb6ae..7758e26 100644 --- a/overviewer_core/textures.py +++ b/overviewer_core/textures.py @@ -3232,8 +3232,11 @@ def enchantment_table(self, blockid, data): # TODO this is a place holder, is a 2d image pasted @material(blockid=117, data=range(5), transparent=True) def brewing_stand(self, blockid, data): + base = self.terrain_images[156] + img = self.build_full_block(None, None, None, None, None, base) t = self.terrain_images[157] - img = self.build_billboard(t) + stand = self.build_billboard(t) + alpha_over(img,stand,(0,-2)) return img # cauldron @@ -3370,3 +3373,6 @@ def slabs(self, blockid, data): # emerald ore block(blockid=130, top_index=171) + +# emerald block +block(blockid=133, top_index=25)