(connectionId connections.ConnectionId)
| 275 | } |
| 276 | |
| 277 | func (w *World) logOutUserByConnectionId(connectionId connections.ConnectionId) { |
| 278 | |
| 279 | if err := users.LogOutUserByConnectionId(connectionId); err != nil { |
| 280 | mudlog.Error("Log Out Error", "connectionId", connectionId, "error", err) |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | func (w *World) enterWorld(userId int, roomId int) { |
| 285 |
no test coverage detected