From 349ec603cb788cb858f1dd1c4197791ee5eca737 Mon Sep 17 00:00:00 2001 From: MrKev312 <34964788+MrKev312@users.noreply.github.com> Date: Sat, 17 Jul 2021 12:20:46 +0200 Subject: [PATCH] Clearer error message --- AmiiboGameList/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AmiiboGameList/Program.cs b/AmiiboGameList/Program.cs index 7afee7e..f76c9c3 100644 --- a/AmiiboGameList/Program.cs +++ b/AmiiboGameList/Program.cs @@ -302,7 +302,7 @@ static void Main() // Show missing games if(missingGames.Count != 0) { - Console.WriteLine("However, the following games could not be added to the database:"); + Console.WriteLine("However, the following games couldn't find their titleids and thus couldn't be added:"); foreach (var Game in missingGames.Distinct()) { Console.WriteLine("\t" + Game);