fix(Core/Creature): Make Respawn() respect conditions and linked respawns (#17597)

This commit is contained in:
KJack
2023-11-26 06:48:58 -05:00
committed by GitHub
parent 2a7b507dd1
commit b7f7a7c731
2 changed files with 106 additions and 101 deletions

View File

@@ -2391,7 +2391,7 @@ public:
if (target->isDead())
{
target->ToCreature()->Respawn();
target->ToCreature()->Respawn(true);
}
return true;
}