From e5fda8ca915a4d6bd9d3e635b675aa9bc9e6c114 Mon Sep 17 00:00:00 2001 From: Joffrey Bion Date: Tue, 26 May 2020 02:38:41 +0200 Subject: Fix player positions in lobby --- .../org/luxons/sevenwonders/ui/components/lobby/RadialPlayerList.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sw-ui') diff --git a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/RadialPlayerList.kt b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/RadialPlayerList.kt index 60962927..b40e622b 100644 --- a/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/RadialPlayerList.kt +++ b/sw-ui/src/main/kotlin/org/luxons/sevenwonders/ui/components/lobby/RadialPlayerList.kt @@ -27,7 +27,8 @@ fun RBuilder.radialPlayerList(players: List, currentPlayer: PlayerDTO itemHeight = 100, options = RadialConfig( radius = 175, - firstItemAngleDegrees = 180 // self at the bottom + firstItemAngleDegrees = 180, // self at the bottom + direction = Direction.COUNTERCLOCKWISE // new players sit to the right of last player ) ) } -- cgit