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