diff options
author | Jeremy <Golrag@users.noreply.github.com> | 2023-08-29 08:38:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 08:38:10 +0200 |
commit | 72b9aace54e44d30c323bd1acda630125e8a574d (patch) | |
tree | 2a5f0b9a7b7f72ace97f46de3b3a6168ad19a26f /src/server/game/Battlegrounds/BattlegroundMgr.cpp | |
parent | 9b516978e7265294f3d3925318caa1cf9e7effd4 (diff) |
Core/Battlegrounds: Implemented BfA Warsong Gulch (#29247)
Diffstat (limited to 'src/server/game/Battlegrounds/BattlegroundMgr.cpp')
-rw-r--r-- | src/server/game/Battlegrounds/BattlegroundMgr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/game/Battlegrounds/BattlegroundMgr.cpp b/src/server/game/Battlegrounds/BattlegroundMgr.cpp index 5b4b958042a..c2c106c43b6 100644 --- a/src/server/game/Battlegrounds/BattlegroundMgr.cpp +++ b/src/server/game/Battlegrounds/BattlegroundMgr.cpp @@ -330,6 +330,7 @@ Battleground* BattlegroundMgr::CreateNewBattleground(BattlegroundQueueTypeId que bg = new BattlegroundAV(bg_template); break; case BATTLEGROUND_WS: + case BATTLEGROUND_WG_CTF: bg = new BattlegroundWS(bg_template); break; case BATTLEGROUND_AB: |