diff --git a/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs b/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs index 89c4ee7c..3183ddac 100644 --- a/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs +++ b/CompatBot/EventHandlers/LogParsing/LogParser.LogSections.cs @@ -186,6 +186,7 @@ namespace CompatBot.EventHandlers.LogParsing ["Could not enqueue"] = new Regex(@"cellAudio: Could not enqueue buffer onto audio backend(?.).*\r?$", DefaultOptions), ["Failed to bind device"] = new Regex(@"Failed to bind device (?.+) to handler (?.+).*\r?$", DefaultOptions), ["{PPU["] = new Regex(@"{PPU\[.+\]} (?[^ :]+)( TODO)?: (?[^ :]+)\(.*\r?$", DefaultOptions), + ["undub"] = new Regex(@"(\b|_)(?undub)(\b|_)", DefaultOptions | RegexOptions.IgnoreCase), }, OnNewLineAsync = LimitedPiracyCheckAsync, OnSectionEnd = MarkAsCompleteAndReset, diff --git a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs index 94879ea2..17720447 100644 --- a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs +++ b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs @@ -393,6 +393,9 @@ namespace CompatBot.Utils.ResultFormatters || !string.IsNullOrEmpty(items["fw_missing_something"])) notes.Add("❌ PS3 firmware is missing or corrupted"); + if (items["game_mod"] is string mod) + notes.Add($"ℹ Game files modification present: `{mod.Trim(10)}`"); + var updateInfo = await CheckForUpdateAsync(items).ConfigureAwait(false); var buildBranch = items["build_branch"]?.ToLowerInvariant(); if (updateInfo != null