From f6e58e92f7422b02bf3fd8e6411a6d99009bbb7b Mon Sep 17 00:00:00 2001 From: Chomp Date: Fri, 17 Jan 2025 12:29:25 +0000 Subject: [PATCH] Include cybertark customisation on dev profiles --- Core/Services/CreateProfileService.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Core/Services/CreateProfileService.cs b/Core/Services/CreateProfileService.cs index 181a1ec1..16a85ceb 100644 --- a/Core/Services/CreateProfileService.cs +++ b/Core/Services/CreateProfileService.cs @@ -356,6 +356,17 @@ public class CreateProfileService }); } } + + // Dev profile additions + if (fullProfile.ProfileInfo.Edition.ToLower().Contains("developer")) + { + // CyberTark background + fullProfile.CustomisationUnlocks.Add( new CustomisationStorage{ + Id = "67585108def253bd97084552", + Source = CustomisationSource.DEFAULT, + Type = CustomisationType.ENVIRONMENT, + }); + } } private string GetGameEdition(SptProfile profile)