[Bug Fix] Fix scenario where dereferenced object could be null. (#2784)

This commit is contained in:
Aeadoin
2023-01-23 18:40:23 -05:00
committed by GitHub
parent 93eddf603b
commit 4d355afe9d
3 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -2770,7 +2770,7 @@ bool NPC::Death(Mob* killer_mob, int64 damage, uint16 spell, EQ::skills::SkillTy
}
}
if (killer_mob->IsBot()) {
if (killer_mob && killer_mob->IsBot()) {
parse->EventBot(EVENT_NPC_SLAY, killer_mob->CastToBot(), this, "", 0);
killer_mob->TrySpellOnKill(killed_level, spell);
}