Fix pending delegations in game status
Dependencies
- [2]
V5ULHL43Implement delegation support - [3]
6TPV5GQ3Show delegates in player table - [4]
B7PYGLH3Show delegate bold if it's logged user itself - [5]
SBYGGRXYShow pending delegates - [6]
LOFH5LIAMake bold player name - [*]
6NYILMKIAdd page for slow game
Change contents
- replacement in src/pages/slow_game.rs at line 197
let pending_delegates = if player_itself && !delegations_from.is_empty() {let pending_delegates = if status.map_or(true, |x| x == "started")&& player_itself&& !delegations_from.is_empty(){ - replacement in src/pages/slow_game.rs at line 220
} else if delegations_to.contains(&player_name.to_lowercase()) {} else if status.map_or(true, |x| x == "started")&& delegations_to.contains(&player_name.to_lowercase()){