diff options
-rw-r--r-- | src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp b/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp index 7608957f1a2..c2cb0bad634 100644 --- a/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp +++ b/src/server/game/Battlegrounds/Zones/BattlegroundSA.cpp @@ -483,7 +483,8 @@ void BattlegroundSA::AddPlayer(Player* player) SendTransportInit(player); - TeleportToEntrancePosition(player); + if (!isInBattleground) + TeleportToEntrancePosition(player); } void BattlegroundSA::RemovePlayer(Player* /*player*/, ObjectGuid /*guid*/, uint32 /*team*/) { } |