diff --git a/ProjectLighthouse/Types/Tickets/NPTicket.cs b/ProjectLighthouse/Types/Tickets/NPTicket.cs index dd1f1f3b..4b33b623 100644 --- a/ProjectLighthouse/Types/Tickets/NPTicket.cs +++ b/ProjectLighthouse/Types/Tickets/NPTicket.cs @@ -111,7 +111,13 @@ public class NPTicket if (npTicket.Platform == Platform.Unknown) { - Logger.Log($"", LoggerLevelLogin.Instance); + Logger.Log($"Could not determine platform from IssuerId {npTicket.IssuerId} decimal", LoggerLevelLogin.Instance); + return null; + } + + if (npTicket.GameVersion == GameVersion.Unknown) + { + Logger.Log($"Could not determine game version from title id {titleId}", LoggerLevelLogin.Instance); return null; }