| 8 | IMPLEMENT(Guard_Resources); |
| 9 | |
| 10 | bool Guard_Resources::execute(aithread &thread) const |
| 11 | { |
| 12 | // Retrieve parameters |
| 13 | WORD wUnitType; |
| 14 | thread.readTuple( std::tie(wUnitType) ); |
| 15 | |
| 16 | // Execution |
| 17 | // GuardResources(wType); |
| 18 | |
| 19 | // Save debug info and return |
| 20 | thread.saveDebug(Text::Red, this->getOpcode(), "%s", AISCRIPT::getUnitName(wUnitType)); |
| 21 | return true; |
| 22 | } |
nothing calls this directly
no test coverage detected