Escape the . in the regex

So it doesn't match stuff like `splash/png` or `splash_png`
This commit is contained in:
Timothy Baldridge 2021-03-18 14:22:24 -06:00 committed by GitHub
parent fd6426a2f8
commit d912e371b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -466,7 +466,7 @@ namespace Wabbajack.Lib
// Don't know why, but this seems to get copied around a bit
new IgnoreEndsWith(this, "HavokBehaviorPostProcess.exe"),
// Theme file MO2 downloads somehow
new IncludeRegex(this, "splash.png"),
new IncludeRegex(this, "splash\.png"),
// File to force MO2 into portable mode
new IgnoreEndsWith(this, "portable.txt"),
new IgnoreEndsWith(this, ".bin"),