Как же я заебался

This commit is contained in:
Jabak
2024-07-17 15:32:05 +03:00
parent 84bc7a9df6
commit 020ad2f834
3 changed files with 13 additions and 9 deletions

View File

@@ -139,7 +139,8 @@ namespace Content.Shared.Preferences
PreferenceUnavailableMode preferenceUnavailable,
IReadOnlyList<string> antagPreferences,
IReadOnlyList<string> traitPreferences,
Dictionary<string, RoleLoadout> loadouts, IReadOnlyDictionary<string, RoleplayInfo> roleplayInfoData)
IReadOnlyDictionary<string, RoleplayInfo> roleplayInfoData,
Dictionary<string, RoleLoadout> loadouts)
: this(name,
clownName,
mimeName,
@@ -157,8 +158,8 @@ namespace Content.Shared.Preferences
preferenceUnavailable,
new List<string>(antagPreferences),
new List<string>(traitPreferences),
new Dictionary<string, RoleLoadout>(loadouts),
new Dictionary<string, RoleplayInfo>(roleplayInfoData))
new Dictionary<string, RoleplayInfo>(roleplayInfoData),
new Dictionary<string, RoleLoadout>(loadouts))
{
}