| 124 | } |
| 125 | |
| 126 | List<SystemClientShipPtr> SystemWorldServer::shipsAtLocation(SystemLocation const& location) const { |
| 127 | return m_ships.values().filtered([location](auto const& ship) { return ship->systemLocation() == location; }); |
| 128 | } |
| 129 | |
| 130 | List<InstanceWorldId> SystemWorldServer::activeInstanceWorlds() const { |
| 131 | // Find the warp actions for all ships located at objects |
no test coverage detected