Skip to content

Commit cd417e3

Browse files
committed
Add .DLC and .INI files to TOC, update to 2.1.1
1 parent d9f875b commit cd417e3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

AutoTOC/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535
[assembly: AssemblyVersion("2.1.*")]
36-
[assembly: AssemblyFileVersion("2.1.0.0")]
36+
[assembly: AssemblyFileVersion("2.1.1.0")]

AutoTOC/TOCCreator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class TOCCreator
3030
/// <returns></returns>
3131
public static IEnumerable<string> GetTocableFiles(string path)
3232
{
33-
string[] Pattern = { "*.pcc", "*.afc", "*.bik", "*.bin", "*.tlk", "*.cnd", "*.upk", "*.tfc", "*.isb", "*.usf" };
33+
string[] Pattern = { "*.pcc", "*.afc", "*.bik", "*.bin", "*.tlk", "*.cnd", "*.upk", "*.tfc", "*.isb", "*.usf", "*.txt", "*.ini", "*.dlc" };
3434
var res = new List<string>();
3535
foreach (string s in Pattern)
3636
res.AddRange(Directory.GetFiles(path, s));

0 commit comments

Comments
 (0)