diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-11-09 00:09:12 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-11-09 00:09:12 -0500 |
commit | 01db5e364d0db74f480dacd20877cc5d4728d60c (patch) | |
tree | 4d349f6d55f6c82f871d4ae218c498ef63d1403f /src/SMAPI | |
parent | 012ff7ec4335d48d7542ac9631b132fdbdc9f2d8 (diff) | |
download | SMAPI-01db5e364d0db74f480dacd20877cc5d4728d60c.tar.gz SMAPI-01db5e364d0db74f480dacd20877cc5d4728d60c.tar.bz2 SMAPI-01db5e364d0db74f480dacd20877cc5d4728d60c.zip |
filter another new error (#638)
Diffstat (limited to 'src/SMAPI')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index f7545bd2..50bd562a 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -99,7 +99,7 @@ namespace StardewModdingAPI.Framework /// <summary>Regex patterns which match console error messages to suppress from the console and log.</summary> private readonly Regex[] SuppressConsoleErrorPatterns = { - new Regex(@"^Error loading schedule data for (?:Bouncer|Dwarf|Gunther|Krobus|Marlon|Mister Qi|Sandy|Wizard): .+ ---> System\.IO\.FileNotFoundException", RegexOptions.Compiled | RegexOptions.CultureInvariant) + new Regex(@"^Error loading schedule data for (?:Bouncer|Dwarf|Gunther|Henchman|Krobus|Marlon|Mister Qi|Sandy|Wizard): .+ ---> System\.IO\.FileNotFoundException", RegexOptions.Compiled | RegexOptions.CultureInvariant) }; /// <summary>Regex patterns which match console messages to show a more friendly error for.</summary> |