diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index bc91b6c1534..3edea4ccf19 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -81,7 +81,7 @@ private HumanoidCharacterProfile( /// Copy constructor private HumanoidCharacterProfile(HumanoidCharacterProfile other) : this(other, new Dictionary(other.JobPriorities), - [..other.AntagPreferences], [..other.TraitPreferences], []) + [..other.AntagPreferences], [..other.TraitPreferences], [..other.LoadoutPreferences]) { } @@ -103,7 +103,7 @@ public HumanoidCharacterProfile( IReadOnlyList loadoutPreferences) : this(name, flavortext, species, age, sex, gender, appearance, clothing, backpack, spawnPriority, new Dictionary(jobPriorities), preferenceUnavailable, - [..antagPreferences], [..traitPreferences], []) + [..antagPreferences], [..traitPreferences], [..loadoutPreferences]) { }