Skip to content

Commit

Permalink
Update RedisFileFinder.cs
Browse files Browse the repository at this point in the history
Added Medieval 2: Total War miles folder at line 42 to close issue #65
  • Loading branch information
SudoArchimedes committed Nov 13, 2018
1 parent 556d31d commit 0c14ad7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion SteamCleaner/Analyzer/FileFinders/RedisFileFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ public void Search(List<string> files, IEnumerable<string> paths)
continue;
}
if (path.Contains("Penumbra Overture\\redist"))
{
continue;
}
if (path.Contains("Medieval II Total War\\miles"))
{
continue;

Expand Down Expand Up @@ -63,4 +67,4 @@ where fileRegex.IsMatch(f)
select f);
}
}
}
}

0 comments on commit 0c14ad7

Please sign in to comment.