fix sorting param

This commit is contained in:
Paul Carroll 2025-07-30 16:53:17 -04:00
parent 580fcb53ce
commit 37daa1bdc4

View file

@ -132,7 +132,7 @@ void HandZone::sortHand()
if (cards.isEmpty()) {
return;
}
cards.sortBy({CardList::SortByType, CardList::SortByName});
cards.sortBy({CardList::SortByMainType, CardList::SortByName});
reorganizeCards();
}