mirror of
https://github.com/liyunfan1223/mod-playerbots.git
synced 2026-02-20 18:10:02 +01:00
Merge pull request #355 from liyunfan1223/fix-summon
[Summon] Fix bot remove from world casued by summon
This commit is contained in:
commit
c45d52d8a3
@ -451,11 +451,15 @@ void PlayerbotAI::HandleTeleportAck()
|
|||||||
bot->GetMotionMaster()->Clear(true);
|
bot->GetMotionMaster()->Clear(true);
|
||||||
bot->StopMoving();
|
bot->StopMoving();
|
||||||
if (bot->IsBeingTeleportedNear()) {
|
if (bot->IsBeingTeleportedNear()) {
|
||||||
|
// Temporary fix for instance can not enter
|
||||||
|
if (!bot->IsInWorld()) {
|
||||||
|
bot->GetMap()->AddPlayerToMap(bot);
|
||||||
|
}
|
||||||
while (bot->IsInWorld() && bot->IsBeingTeleportedNear()) {
|
while (bot->IsInWorld() && bot->IsBeingTeleportedNear()) {
|
||||||
Player* plMover = bot->m_mover->ToPlayer();
|
Player* plMover = bot->m_mover->ToPlayer();
|
||||||
if (!plMover)
|
if (!plMover)
|
||||||
return;
|
return;
|
||||||
WorldPacket p = WorldPacket(MSG_MOVE_TELEPORT_ACK, 8 + 4 + 4);
|
WorldPacket p = WorldPacket(MSG_MOVE_TELEPORT_ACK, 20);
|
||||||
p << plMover->GetPackGUID();
|
p << plMover->GetPackGUID();
|
||||||
p << (uint32) 0; // supposed to be flags? not used currently
|
p << (uint32) 0; // supposed to be flags? not used currently
|
||||||
p << (uint32) 0; // time - not currently used
|
p << (uint32) 0; // time - not currently used
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user