| 525 | } |
| 526 | |
| 527 | int PerlembParser::EventSpell( |
| 528 | QuestEventID event_id, |
| 529 | Mob* mob, |
| 530 | Client* client, |
| 531 | uint32 spell_id, |
| 532 | std::string data, |
| 533 | uint32 extra_data, |
| 534 | std::vector<std::any>* extra_pointers |
| 535 | ) |
| 536 | { |
| 537 | return EventCommon( |
| 538 | event_id, |
| 539 | spell_id, |
| 540 | data.c_str(), |
| 541 | mob, |
| 542 | nullptr, |
| 543 | &spells[spell_id], |
| 544 | client, |
| 545 | nullptr, |
| 546 | extra_data, |
| 547 | false, |
| 548 | extra_pointers |
| 549 | ); |
| 550 | } |
| 551 | |
| 552 | bool PerlembParser::HasQuestSub(uint32 npc_id, QuestEventID event_id) |
| 553 | { |
no test coverage detected