0

Add support for concrete powder

aheadley is a pleb, and I can call him names in this commit message
because he doesn't look at them anyway lol
This commit is contained in:
Nicolas F
2017-03-10 07:35:39 +01:00
parent 13d5fb7642
commit 8e883f47f5

View File

@@ -4644,6 +4644,11 @@ def concrete(self, blockid, data):
texture = self.load_image_texture("assets/minecraft/textures/blocks/concrete_%s.png" % color_map[data])
return self.build_block(texture, texture)
# Concrete Powder
@material(blockid=252, data=range(16), solid=True)
def concrete(self, blockid, data):
texture = self.load_image_texture("assets/minecraft/textures/blocks/concrete_powder_%s.png" % color_map[data])
return self.build_block(texture, texture)
# Glazed Terracotta
@material(blockid=range(235,251), solid=True, nodata=True)