Skip to content

Commit

Permalink
Update SharedHumanoidAppearanceSystem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgencheg authored Nov 7, 2024
1 parent 739ba46 commit 791feb2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@ public HumanoidCharacterProfile FromStream(Stream stream, ICommonSession session
var profile = export.Profile;
var collection = IoCManager.Instance;
var sponsorPrototypes = Array.Empty<string>(); //LPP ??
profile.EnsureValid(session, collection!, sponsorPrototypes); // сломалось, Я хз почему
profile.EnsureValid(session, collection!
#if LPP_Sponsors
, sponsorPrototypes // сломалось, Я хз почему
#endif
);
return profile;
}

Expand Down

0 comments on commit 791feb2

Please sign in to comment.