mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 07:37:03 +00:00
Updated to 10072 client build.
This commit is contained in:
parent
3089d85035
commit
c9258deb5a
4 changed files with 25 additions and 21 deletions
|
|
@ -169,7 +169,7 @@ struct ActionButton
|
|||
}
|
||||
};
|
||||
|
||||
#define MAX_ACTION_BUTTONS 144 //checked in 2.3.0
|
||||
#define MAX_ACTION_BUTTONS 144 //checked in 3.2.0
|
||||
|
||||
typedef std::map<uint8,ActionButton> ActionButtonList;
|
||||
|
||||
|
|
@ -321,15 +321,19 @@ enum LfgType
|
|||
LFG_TYPE_RAID = 2,
|
||||
LFG_TYPE_QUEST = 3,
|
||||
LFG_TYPE_ZONE = 4,
|
||||
LFG_TYPE_HEROIC_DUNGEON = 5
|
||||
LFG_TYPE_HEROIC_DUNGEON = 5,
|
||||
LFG_TYPE_ANY_DUNGEON = 6,
|
||||
LFG_TYPE_ANY_HEROIC_DUNGEON = 7,
|
||||
LFG_TYPE_DAILY_DUNGEON = 8,
|
||||
LFG_TYPE_DAILY_HEROIC_DUNGEON = 9
|
||||
};
|
||||
|
||||
enum LfgRoles
|
||||
{
|
||||
LEADER = 1,
|
||||
TANK = 2,
|
||||
HEALER = 4,
|
||||
DAMAGE = 8
|
||||
LEADER = 0x01,
|
||||
TANK = 0x02,
|
||||
HEALER = 0x04,
|
||||
DAMAGE = 0x08
|
||||
};
|
||||
|
||||
struct LookingForGroupSlot
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
#ifndef _UPDATEFIELDS_AUTO_H
|
||||
#define _UPDATEFIELDS_AUTO_H
|
||||
|
||||
// Auto generated for version 0, 2, 0, 10048
|
||||
// Auto generated for version 0, 2, 0, 10072
|
||||
|
||||
enum EObjectFields
|
||||
{
|
||||
|
|
|
|||
|
|
@ -66,8 +66,8 @@ enum LoginResult
|
|||
|
||||
// we need to stick to 1 version or half of the stuff will work for someone
|
||||
// others will not and opposite
|
||||
// will only support WoW, WoW:TBC and WoW:WotLK 3.2.0 client build 10048...
|
||||
// will only support WoW, WoW:TBC and WoW:WotLK 3.2.0 client build 10072...
|
||||
|
||||
#define EXPECTED_MANGOS_CLIENT_BUILD {10048, 0}
|
||||
#define EXPECTED_MANGOS_CLIENT_BUILD {10072, 0}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue