| 931 | } |
| 932 | |
| 933 | void MainInterface::warpToOrbitedWorld(bool deploy) { |
| 934 | if (m_client->canBeamDown(deploy)) { |
| 935 | if (deploy) |
| 936 | m_client->warpPlayer(WarpAlias::OrbitedWorld, true, "deploy", true); |
| 937 | else |
| 938 | m_client->warpPlayer(WarpAlias::OrbitedWorld, true, "beam"); |
| 939 | return; |
| 940 | } |
| 941 | m_guiContext->playAudio("/sfx/interface/clickon_error.ogg"); |
| 942 | } |
| 943 | |
| 944 | void MainInterface::warpToOwnShip() { |
| 945 | if (m_client->canBeamUp()) { |
nothing calls this directly
no test coverage detected