Fixed possible bot crashes due to nullptr conflict.

This commit is contained in:
Kinglykrab
2015-06-18 23:42:59 -04:00
parent b1829e929e
commit de81850dd9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1105,7 +1105,7 @@ void Mob::AI_Process() {
}
#ifdef BOTS
if (IsPet() && GetOwner()->IsBot() && target == GetOwner())
if (IsPet() && GetOwner() && GetOwner()->IsBot() && target == GetOwner())
{
// this blocks all pet attacks against owner..bot pet test (copied above check)
RemoveFromHateList(this);