| 6 | IMPLEMENT(Stop); |
| 7 | |
| 8 | bool Stop::execute(aithread &thread) const |
| 9 | { |
| 10 | // Stop script execution on the current thread |
| 11 | thread.killThread(); |
| 12 | |
| 13 | // Debug and return |
| 14 | thread.saveDebug(Text::Green, this->getOpcode()); |
| 15 | thread.noretry(); |
| 16 | return false; |
| 17 | } |
nothing calls this directly
no test coverage detected