diff options
author | joffrey-bion <joffrey.bion@gmail.com> | 2020-11-26 01:26:11 +0100 |
---|---|---|
committer | joffrey-bion <joffrey.bion@gmail.com> | 2020-11-26 02:02:47 +0100 |
commit | 2ec501685f346257051c0f4063f119246c6e02a0 (patch) | |
tree | 2c309463ae7cb08a25c6de3141326a7909b92b00 /sw-ui/src/main/kotlin | |
parent | Distinguish wonder fully built and card already played (diff) | |
download | seven-wonders-2ec501685f346257051c0f4063f119246c6e02a0.tar.gz seven-wonders-2ec501685f346257051c0f4063f119246c6e02a0.tar.bz2 seven-wonders-2ec501685f346257051c0f4063f119246c6e02a0.zip |
Support ex-aequo ranks
Diffstat (limited to 'sw-ui/src/main/kotlin')
-rw-r--r-- | sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt index 16c83c78..23fd6d8e 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/game/ScoreTable.kt @@ -77,7 +77,7 @@ private fun RBuilder.scoreTable(scoreBoard: ScoreBoard, players: List<PlayerDTO> scoreBoard.scores.forEachIndexed { index, score -> val player = players[score.playerIndex] tr { - centeredTd { +"${index + 1}" } + centeredTd { +"${scoreBoard.ranks[index]}" } centeredTd { bpIcon(player.icon?.name ?: "user", size = 25) } styledTd { inlineStyles { |