@@ -190,17 +190,17 @@ private static async ValueTask BuildNotesSectionAsync(DiscordEmbedBuilder builde
190
190
var cpuModelMatched = false ;
191
191
if ( items [ "cpu_and_memory_info" ] is string cpuAndMemoryInfo )
192
192
{
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 } )
194
194
{
195
195
var status = items [ "game_status" ] ?? "unknown" ;
196
196
var msg = ( tier , status ) switch
197
197
{
198
198
( "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" ,
200
200
( "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" ,
202
202
( "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" ,
204
204
( "D" , _ ) => "⚠️ This is a **D** Tier CPU, please stick to the lighter playable game titles" ,
205
205
( "F" , _ ) => "❌ This is an **F** Tier CPU, which is below the minimum system requirements" ,
206
206
_ => "" ,
0 commit comments