feat(ui): enhance user session management with interaction reset and locking

This commit is contained in:
2025-11-02 16:50:51 +01:00
parent 325f2e44f6
commit 8eec1fd38f
3 changed files with 27 additions and 4 deletions

View File

@@ -28,4 +28,8 @@ class UserSession(user: User, val host: Boolean) extends PlayerSession {
override def name: String = user.name
def resetCanInteract(): Unit = {
canInteract = None
}
}