Concise description:
- If an active game has 2 players that need to go before you, it should be listed before a game that has 7 players that need to go before you - the one you recently played on is sent to the bottom.
Games have the same number of players that need to go before you should then be organized by hours remaining for the current player.
This will improve the following aspects of the site:
- A more organized and efficient interface that allows you quick access to the games that have changed the most since you last saw them.
I think 4myGod explains it very well:
"So let's say you have 3 games:
CURRENT SORTING:
1. 15hrs time remaining / 7 players need to make a turn before it's your turn
2. 20hrs time remaining / 1 player needs to make a turn before it's your turn
3. 21hrs time remaining / 1 players need to make a turn before it's your turn
Chances are that #2 and #3 will become your turn sooner than #1, because there is only 1 player needing to go before you in those games. So first sort by the number of players that are left to make a turn, then sort by the time remaining for them to make it.
NEW SORTING:
1. 20hrs time remaining / 1 player needs to make a turn before it's your turn
2. 21hrs time remaining / 1 players need to make a turn before it's your turn
3. 15hrs time remaining / 7 players need to make a turn before it's your turn"