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

This commit is contained in:
2025-10-23 08:15:57 +02:00
parent ccf44ede41
commit e213c0706b
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
}
}