diff options
author | w12x <none@none> | 2008-10-05 08:48:32 -0500 |
---|---|---|
committer | w12x <none@none> | 2008-10-05 08:48:32 -0500 |
commit | 6f0c3469a63c97eef57f36f1a39fed0b281b7cc9 (patch) | |
tree | 7089d31e4493160bed067ac9da519841704b230a /src/game/Level3.cpp | |
parent | 8b3fcc37c624c3ee4808d63160f563c070950cb4 (diff) |
[svn] -enabled instantiated battlegrounds
-enabled arena matches
-rewritten battleground queuing to support joining as group
-removed queue announcements
--HG--
branch : trunk
Diffstat (limited to 'src/game/Level3.cpp')
-rw-r--r-- | src/game/Level3.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/Level3.cpp b/src/game/Level3.cpp index 5984dbbfe21..ff849f7c9d1 100644 --- a/src/game/Level3.cpp +++ b/src/game/Level3.cpp @@ -46,6 +46,7 @@ #include "Config/ConfigEnv.h"
#include "Util.h"
#include "ItemEnchantmentMgr.h"
+#include "BattleGroundMgr.h"
#include "InstanceSaveMgr.h"
#include "InstanceData.h"
@@ -5457,3 +5458,9 @@ bool ChatHandler::HandleInstanceSaveDataCommand(const char * /*args*/) ((InstanceMap*)map)->GetInstanceData()->SaveToDB();
return true;
}
+
+bool ChatHandler::HandleFlushArenaPointsCommand(const char * /*args*/)
+{
+ sBattleGroundMgr.DistributeArenaPoints();
+ return true;
+}
|