Skip to content

Commit

Permalink
fix typo in tagresourcereport command
Browse files Browse the repository at this point in the history
  • Loading branch information
jaron780 committed May 22, 2024
1 parent cad2466 commit 205cc23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TagTool/Commands/Tags/TagResourceReportCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private void CollectTagResources(GameCache cache, Stream stream, CachedTagHaloOn
{
if (tag == null)
return;
if (CurrentFlags.HasFlag(ReportFlags.IncludeBaseCache) && tag.IsEmpty())
if (!CurrentFlags.HasFlag(ReportFlags.IncludeBaseCache) && tag.IsEmpty())
return;

if (visitedTags.Add(tag))
Expand Down

0 comments on commit 205cc23

Please sign in to comment.