AI/SmartAI: Properly forward to inherited CreatureAI::JustAppeared in SmartAI::JustAppeared. Fixes #23491.

(cherry picked from commit 854a113fc7)
This commit is contained in:
Treeston
2019-06-23 23:32:21 +02:00
committed by Shauren
parent 38d7c1530a
commit 743d022cee

View File

@@ -528,6 +528,9 @@ void SmartAI::InitializeAI()
void SmartAI::JustAppeared()
{
CreatureAI::JustAppeared();
if (me->isDead())
return;