| 6 | IMPLEMENT(Wait_FinishAttack); |
| 7 | |
| 8 | bool Wait_FinishAttack::execute(aithread &thread) const |
| 9 | { |
| 10 | // Debug |
| 11 | thread.saveDebug(Text::Red, this->getOpcode()); |
| 12 | |
| 13 | // Check if AI is attacking |
| 14 | // if ( AIIsAttacking ) |
| 15 | { |
| 16 | return thread.noretry(); |
| 17 | } |
| 18 | return thread.retry(); |
| 19 | } |