Minor sim refactors

This commit is contained in:
Asriel Camora
2024-03-03 19:03:07 -08:00
parent 2f0e30e4c2
commit 84d7d5737f
3 changed files with 28 additions and 19 deletions
-1
View File
@@ -22,7 +22,6 @@ public static class ActionCategoryUtils
{
SortedActions = new(
Enum.GetValues<ActionType>()
.Where(a => a.Category() != ActionCategory.Combo)
.GroupBy(a => a.Category())
.ToDictionary(g => g.Key, g => g.OrderBy(a => a.Level()).ToArray()));
}