Skip to content

Commit

Permalink
фикс ClientPreferencesManager.cs (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
SpicyDarkFox authored Oct 7, 2024
1 parent 81caef9 commit ebaa385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Client/Preferences/ClientPreferencesManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void UpdateCharacter(ICharacterProfile profile, int slot)
var collection = IoCManager.Instance!;

#if LPP_Sponsors // _LostParadise-Sponsors
var allowedMarkings = _sponsorsManager.TryGetInfo(out var sponsor) ? sponsor.AllowedMarkings : [];
var allowedMarkings = _sponsorsManager.TryGetInfo(out var sponsor) ? sponsor.AllowedMarkings : Array.Empty<string>();
if (sponsor != null)
{
var tier = sponsor.Tier > 5 ? 5 : sponsor.Tier;
Expand Down

0 comments on commit ebaa385

Please sign in to comment.