Skip to content

Commit

Permalink
Update HumanoidProfileEditor.xaml.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxxoTrystan authored Aug 20, 2024
1 parent a626437 commit fc3fd5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,7 @@ void AddSelector(LoadoutPreferenceSelector selector, int points, string id)
selector.PreferenceChanged += preference =>
{
// Make sure they have enough loadout points
preference = preference ? CheckPoints(points, preference) : CheckPoints(-points, preference);
preference = preference ? CheckPoints(-points, preference) : CheckPoints(points, preference);
// Update Preferences
Profile = Profile?.WithLoadoutPreference(id, preference);
Expand Down

0 comments on commit fc3fd5d

Please sign in to comment.