Skip to content

Commit

Permalink
Difficulties are now actually sorted (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
HwakYuk authored May 17, 2024
1 parent 050a908 commit 4dde699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Systems/DifficultyModeSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static DifficultyMode GetCurrentDifficulty
public static void CalculateDifficultyData()
{
MostAlternateDifficulties = 1;
Difficulties.OrderBy(d => d.DifficultyScale);
Difficulties = Difficulties.OrderBy(d => d.DifficultyScale).ToList();

//Difficulties are arranged in "tiers". This is done so that multiple mods can add their own alternate difficulties sharing a tier with the base ones
DifficultyTiers = new List<DifficultyMode[]>();
Expand Down

0 comments on commit 4dde699

Please sign in to comment.