Skip to content

Commit 07f920d

Browse files
committed
Merge branch 'vnext'
2 parents 9b530b1 + f1d5a54 commit 07f920d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,17 +190,17 @@ private static async ValueTask BuildNotesSectionAsync(DiscordEmbedBuilder builde
190190
var cpuModelMatched = false;
191191
if (items["cpu_and_memory_info"] is string cpuAndMemoryInfo)
192192
{
193-
if (CpuTierList.List.FirstOrDefault(i => i.regex.IsMatch(cpuAndMemoryInfo)) is { tier: { Length: >0 } tier } match)
193+
if (CpuTierList.List.FirstOrDefault(i => i.regex.IsMatch(cpuAndMemoryInfo)) is { tier: { Length: >0 } tier })
194194
{
195195
var status = items["game_status"] ?? "unknown";
196196
var msg = (tier, status) switch
197197
{
198198
("S" or "A", _) => $"ℹ️ This is an **{tier}** Tier CPU",
199-
("B", "ingame") => "⚠️ This is a **B** Tier CPU, and may not be sufficient for some ingame titles",
199+
("B", "Ingame") => "⚠️ This is a **B** Tier CPU, and may not be sufficient for some ingame titles",
200200
("B", _) => "ℹ️ This is a **B** Tier CPU",
201-
("C", "playable") => "⚠️ This is a **C** Tier CPU, which is below the recommended system requirements",
201+
("C", "Playable") => "⚠️ This is a **C** Tier CPU, which is below the recommended system requirements",
202202
("C", _) => "⚠️ This is a **C** Tier CPU, please stick to the playable game titles",
203-
("D", "playable") => "⚠️ This is a **D** Tier CPU, only lighter playable game titles will work",
203+
("D", "Playable") => "⚠️ This is a **D** Tier CPU, only lighter playable game titles will work",
204204
("D", _) => "⚠️ This is a **D** Tier CPU, please stick to the lighter playable game titles",
205205
("F", _) => "❌ This is an **F** Tier CPU, which is below the minimum system requirements",
206206
_ => "",

0 commit comments

Comments
 (0)