Skip to content

Commit

Permalink
Improved recipes sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
andev0 committed Aug 17, 2024
1 parent 13d9e3e commit f5265ec
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Tools/SatisfactoryRecipeExporter/Exporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ let recipes: Recipe[] = satisfactory
productsComplexity = Math.max(productsComplexity, resource?.resourceSinkPoints ?? 0);
}

// Products which can't be sinked are usually very late-game ones or just should be together.
productsComplexity = productsComplexity == 0 ? 99999 : productsComplexity;

return {
id: docsRecipe.ClassName,
displayName: docsRecipe.mDisplayName,
Expand Down

0 comments on commit f5265ec

Please sign in to comment.