| 362 | } |
| 363 | |
| 364 | void AiInterface::dismissRecruit() { |
| 365 | if (!m_selectedRecruit) |
| 366 | return; |
| 367 | |
| 368 | Uuid podUuid = m_selectedRecruit->podUuid(); |
| 369 | m_client->mainPlayer()->companions()->dismissCompanion("crew", podUuid); |
| 370 | |
| 371 | m_crewStack->showPage(1); |
| 372 | } |
| 373 | |
| 374 | void AiInterface::goBack() { |
| 375 | if (m_currentPage == AiPages::MissionPage) |
nothing calls this directly
no test coverage detected