Commit 6c7acc20 by Jonathan Thomas

Stop annoying logs when texture is not found

parent c0b08cfc
Pipeline #11946 passed with stage
in 31 seconds
......@@ -45,7 +45,6 @@ public class TextureLoader {
return textureId;
} else {
// Texture not found, log a message and return the "not_found" texture Identifier
LOGGER.info(texturePath + " was not found");
Identifier notFoundTextureId = new Identifier("mobgpt", "textures/entity/not_found.png");
MinecraftClient.getInstance().getTextureManager().bindTexture(notFoundTextureId);
return notFoundTextureId;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment