| 5625 | } |
| 5626 | |
| 5627 | static void ASLoadLevelID(std::string id) { |
| 5628 | Engine* engine = Engine::Instance(); |
| 5629 | Online* online = Online::Instance(); |
| 5630 | |
| 5631 | if (online->IsHosting()) { |
| 5632 | // mp.changeLevel(id); |
| 5633 | } |
| 5634 | |
| 5635 | engine->ScriptableUICallback("load_campaign_level " + id); |
| 5636 | } |
| 5637 | |
| 5638 | static void ASSetCampaignID(std::string id) { |
| 5639 | Engine* engine = Engine::Instance(); |
nothing calls this directly
no test coverage detected