diff options
author | shennetsind <ind@henn.et> | 2013-11-06 21:10:05 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-11-06 21:10:05 -0200 |
commit | eaf04b9a2f0b399027df251c5d19d58d74e24e6a (patch) | |
tree | d4481d98fbaea267c6a7906c06c3f2af6bc9dca7 /src/map/battleground.h | |
parent | 665f1306a130d4b8c359972bf4e58ef9d3bd9cd8 (diff) | |
download | hercules-eaf04b9a2f0b399027df251c5d19d58d74e24e6a.tar.gz hercules-eaf04b9a2f0b399027df251c5d19d58d74e24e6a.tar.bz2 hercules-eaf04b9a2f0b399027df251c5d19d58d74e24e6a.tar.xz hercules-eaf04b9a2f0b399027df251c5d19d58d74e24e6a.zip |
BG Queue Update
Enabled Party/Guild joining methods, Implements first attempt at the splitting algorithm (Thanks to jaBote!)
Checks item 1 on issue #69
Help us test! -- http://hercules.ws/board/topic/1302-bg-queue-debug/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/battleground.h')
-rw-r--r-- | src/map/battleground.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/map/battleground.h b/src/map/battleground.h index a5e540924..4150de8be 100644 --- a/src/map/battleground.h +++ b/src/map/battleground.h @@ -19,10 +19,11 @@ * Enumerations **/ enum bg_queue_types { - BGQT_INVALID, - BGQT_INDIVIDUAL, - BGQT_PARTY, - BGQT_GUILD + BGQT_INVALID = 0x0, + BGQT_INDIVIDUAL = 0x1, + BGQT_PARTY = 0x2, + /* yup no 0x3 */ + BGQT_GUILD = 0x4, }; struct battleground_member_data { |