Skip to content

Commit

Permalink
Don't log messages for resource packs without issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jellysquid3 committed Jan 26, 2024
1 parent b87a6f4 commit 7781cc0
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ private static void printCompatibilityReport(Map<String, ScanResults> scanResult
var path = entry.getKey();
var result = entry.getValue();

if (result.shaderPrograms.isEmpty() && result.shaderIncludes.isEmpty()) {
continue;
}

builder.append("- Resource pack: ").append(getResourcePackName(path)).append("\n");

if (!result.shaderPrograms.isEmpty()) {
Expand Down

0 comments on commit 7781cc0

Please sign in to comment.