Get rid of "No texture" spam

This commit is contained in:
David Vierra 2015-01-26 19:25:14 -10:00
parent f3df53ee43
commit c1f411221e

View File

@ -53,7 +53,7 @@ def BlockTypePixmap(block, textureAtlas):
models = textureAtlas.blockModels
texname = models.firstTextures.get(block.internalName + block.blockState)
if texname is None:
log.info("No texture for %s!", block.internalName + block.blockState)
log.debug("No texture for %s!", block.internalName + block.blockState)
texname = "MCEDIT_UNKNOWN"
io = textureAtlas._openImageStream(texname)