| 6 | IMPLEMENT(Scout_With); |
| 7 | |
| 8 | bool Scout_With::execute(aithread &thread) const |
| 9 | { |
| 10 | // Retrieve parameters |
| 11 | WORD wScoutType; |
| 12 | thread.readTuple( std::tie(wScoutType) ); |
| 13 | |
| 14 | // Do nothing (correct behaviour) |
| 15 | |
| 16 | // Save debug info and return |
| 17 | thread.saveDebug(Text::Green, this->getOpcode(), "%s", AISCRIPT::getUnitName(wScoutType) ); |
| 18 | return true; |
| 19 | } |
nothing calls this directly
no test coverage detected