| 2622 | } |
| 2623 | |
| 2624 | int PerlembParser::EventBot( |
| 2625 | QuestEventID event_id, |
| 2626 | Bot* bot, |
| 2627 | Mob* mob, |
| 2628 | std::string data, |
| 2629 | uint32 extra_data, |
| 2630 | std::vector<std::any>* extra_pointers |
| 2631 | ) |
| 2632 | { |
| 2633 | return EventCommon( |
| 2634 | event_id, |
| 2635 | 0, |
| 2636 | data.c_str(), |
| 2637 | bot, |
| 2638 | nullptr, |
| 2639 | nullptr, |
| 2640 | mob, |
| 2641 | nullptr, |
| 2642 | extra_data, |
| 2643 | false, |
| 2644 | extra_pointers |
| 2645 | ); |
| 2646 | } |
| 2647 | |
| 2648 | int PerlembParser::EventGlobalBot( |
| 2649 | QuestEventID event_id, |
no test coverage detected