Skip to content

Commit

Permalink
Fix forge versions being reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically committed Nov 9, 2024
1 parent 24e90f0 commit aae00e1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/daedalus_client/src/forge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,7 @@ async fn fetch(
game_versions: forge_versions
.into_iter()
.sorted_by(|a, b| b.game_version.cmp(&a.game_version))
.rev()
.chunk_by(|x| x.game_version.clone())
.into_iter()
.map(|(game_version, loaders)| daedalus::modded::Version {
Expand Down

0 comments on commit aae00e1

Please sign in to comment.