| 341 | } |
| 342 | |
| 343 | CelestialCoordinate UniverseServer::clientShipCoordinate(ConnectionId clientId) const { |
| 344 | ReadLocker clientsLocker(m_clientsLock); |
| 345 | if (auto clientContext = m_clients.value(clientId)) |
| 346 | return clientContext->shipCoordinate(); |
| 347 | return CelestialCoordinate(); |
| 348 | } |
| 349 | |
| 350 | ClockPtr UniverseServer::universeClock() const { |
| 351 | return m_universeClock; |
nothing calls this directly
no test coverage detected