| 8 | IMPLEMENT(Start_Campaign); |
| 9 | |
| 10 | bool Start_Campaign::execute(aithread &thread) const |
| 11 | { |
| 12 | // Set campaign flag |
| 13 | MainController.setFlags(CONTROLLER_IS_CAMPAIGN); |
| 14 | |
| 15 | // Save debug info and return |
| 16 | thread.saveDebug(Text::Green, this->getOpcode()); |
| 17 | return true; |
| 18 | } |