Skip to content

Commit

Permalink
NPCBots: Fix Arathi Basin / Eye of the Storm buffs checks
Browse files Browse the repository at this point in the history
  • Loading branch information
trickerer committed Nov 7, 2024
1 parent 3d10fd2 commit 66273f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/game/AI/NpcBots/bot_ai.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19385,7 +19385,7 @@ WanderNode const* bot_ai::GetNextBGTravelNode() const
}
if (object_type)
{
for (uint8 i = 0; i != 2; ++i)
for (uint8 i = 0; i != 3; ++i)
{
GameObject const* go = ab->GetBGObject(object_type + i);
if (go && go->IsInWorld() && go->isSpawned() && go->GetGoState() == GO_STATE_READY)
Expand Down Expand Up @@ -19547,7 +19547,7 @@ WanderNode const* bot_ai::GetNextBGTravelNode() const
}
if (object_type)
{
for (uint8 i = 0; i != 2; ++i)
for (uint8 i = 0; i != 3; ++i)
{
GameObject const* go = ey->GetBGObject(object_type + i);
if (go && go->IsInWorld() && go->isSpawned() && go->GetGoState() == GO_STATE_READY)
Expand Down

0 comments on commit 66273f5

Please sign in to comment.