feat(ui): UI now shows player names instead of their id (#11)

Reviewed-on: #11
This commit is contained in:
2025-10-23 08:17:11 +02:00
parent ccf44ede41
commit c168ae7dc0
6 changed files with 10 additions and 264 deletions

View File

@@ -30,8 +30,8 @@ object PodGameManager {
sessions.foreach(session => session._2.updatePlayer(event))
}
def listSessions(): List[UUID] = {
sessions.keys.toList
def listSessions(): List[PlayerSession] = {
sessions.values.toList
}
}