| 35 | } |
| 36 | |
| 37 | void SystemWorldServer::setClientDestination(ConnectionId const& clientId, SystemLocation const& destination) { |
| 38 | auto uuid = m_clientShips.get(clientId); |
| 39 | m_ships[uuid]->setDestination(destination); |
| 40 | } |
| 41 | |
| 42 | SystemClientShipPtr SystemWorldServer::clientShip(ConnectionId clientId) const { |
| 43 | if (m_clientShips.contains(clientId) && m_ships.contains(m_clientShips.get(clientId))) |
no test coverage detected