Skip to content

Commit

Permalink
Merge branch 'architectury-1.18.1' into architectury-1.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
UnlikePaladin committed Oct 30, 2023
2 parents bedf645 + 14b52d4 commit 5526147
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 5526147

Please sign in to comment.