From 9fb41fe0c769479cc96bf31ef99aaed5aed493c2 Mon Sep 17 00:00:00 2001 From: CWX Date: Mon, 3 Feb 2025 14:26:48 +0000 Subject: [PATCH] fix logic --- Libraries/Core/Services/CreateProfileService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/Core/Services/CreateProfileService.cs b/Libraries/Core/Services/CreateProfileService.cs index 8681ea4f..2e441dd9 100644 --- a/Libraries/Core/Services/CreateProfileService.cs +++ b/Libraries/Core/Services/CreateProfileService.cs @@ -395,9 +395,9 @@ public class CreateProfileService( private string? GetGameEdition(SptProfile profile) { var edition = profile.CharacterData?.PmcData?.Info?.GameVersion; - if (edition is null) + if (edition is not null) { - return null; + return edition; } // Edge case - profile not created yet, fall back to what launcher has set