diff --git a/common/src/main/java/com/unlikepaladin/pfm/blocks/models/ModelHelper.java b/common/src/main/java/com/unlikepaladin/pfm/blocks/models/ModelHelper.java index e4c50b866..3b6ec5505 100644 --- a/common/src/main/java/com/unlikepaladin/pfm/blocks/models/ModelHelper.java +++ b/common/src/main/java/com/unlikepaladin/pfm/blocks/models/ModelHelper.java @@ -173,8 +173,10 @@ else if(idExists(getLogId(block, "_bottom"), ResourceType.CLIENT_RESOURCES, IdLo id = getLogId(block, "_bottom"); } else { - PFMDataGen.LOGGER.warn("Couldn't find texture for, {}", block); - id = MissingSprite.getMissingSpriteId(); + if (!Registry.BLOCK.getId(block).getNamespace().equals("quark")) { + PFMDataGen.LOGGER.warn("Couldn't find texture for, {}", block); + } + id = Texture.getSubId(block, postfix); } blockToTextureMap.put(pair, id); return id;