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

This commit is contained in:
Treeston
2019-06-23 23:32:21 +02:00
parent 1158f267df
commit 854a113fc7

View File

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