Updated to 10072 client build.

This commit is contained in:
tomrus88 2009-07-08 22:03:53 +04:00
parent 3089d85035
commit c9258deb5a
4 changed files with 25 additions and 21 deletions

View file

@ -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; typedef std::map<uint8,ActionButton> ActionButtonList;
@ -321,15 +321,19 @@ enum LfgType
LFG_TYPE_RAID = 2, LFG_TYPE_RAID = 2,
LFG_TYPE_QUEST = 3, LFG_TYPE_QUEST = 3,
LFG_TYPE_ZONE = 4, 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 enum LfgRoles
{ {
LEADER = 1, LEADER = 0x01,
TANK = 2, TANK = 0x02,
HEALER = 4, HEALER = 0x04,
DAMAGE = 8 DAMAGE = 0x08
}; };
struct LookingForGroupSlot struct LookingForGroupSlot

View file

@ -19,7 +19,7 @@
#ifndef _UPDATEFIELDS_AUTO_H #ifndef _UPDATEFIELDS_AUTO_H
#define _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 enum EObjectFields
{ {

View file

@ -66,8 +66,8 @@ enum LoginResult
// we need to stick to 1 version or half of the stuff will work for someone // we need to stick to 1 version or half of the stuff will work for someone
// others will not and opposite // 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 #endif