Fix seg fault with egg powers

This commit is contained in:
gsemaj 2023-07-22 15:10:00 -04:00
parent 9b7656117d
commit 2249b5381b
No known key found for this signature in database
GPG Key ID: 24B96BAA40497929
1 changed files with 2 additions and 0 deletions

View File

@ -274,6 +274,8 @@ void Abilities::useNPCSkill(EntityRef npc, int skillID, std::vector<ICombatant*>
SkillData* skill = &SkillTable[skillID];
std::vector<SkillResult> results = handleSkill(skill, 0, src, affected);
if(results.empty()) return; // no effect; no need for confirmation packets
size_t resultSize = results.back().size; // guaranteed to be the same for every item
if (!validOutVarPacket(sizeof(sP_FE2CL_NPC_SKILL_HIT), results.size(), resultSize)) {