Core/PacketIO: Updated to 11.0.0
Port From (https://github.com/TrinityCore/TrinityCore/commit/e59eef5432c7b70679d33f4911c88d0f7d75fd39)
This commit is contained in:
@@ -3,16 +3,16 @@
|
||||
|
||||
namespace Framework.Constants
|
||||
{
|
||||
public enum AccountDataTypes
|
||||
public enum AccountDataTypes : uint
|
||||
{
|
||||
GlobalConfigCache = 0x00,
|
||||
PerCharacterConfigCache = 0x01,
|
||||
GlobalBindingsCache = 0x02,
|
||||
PerCharacterBindingsCache = 0x03,
|
||||
GlobalMacrosCache = 0x04,
|
||||
PerCharacterMacrosCache = 0x05,
|
||||
PerCharacterLayoutCache = 0x06,
|
||||
PerCharacterChatCache = 0x07,
|
||||
GlobalConfigCache = 0,
|
||||
PerCharacterConfigCache = 1,
|
||||
GlobalBindingsCache = 2,
|
||||
PerCharacterBindingsCache = 3,
|
||||
GlobalMacrosCache = 4,
|
||||
PerCharacterMacrosCache = 5,
|
||||
PerCharacterLayoutCache = 6,
|
||||
PerCharacterChatCache = 7,
|
||||
GlobalTtsCache = 8,
|
||||
PerCharacterTtsCache = 9,
|
||||
GlobalFlaggedCache = 10,
|
||||
@@ -20,12 +20,14 @@ namespace Framework.Constants
|
||||
PerCharacterClickBindingsCache = 12,
|
||||
GlobalEditModeCache = 13,
|
||||
PerCharacterEditModeCache = 14,
|
||||
GlobalFrontendChatSettings = 15,
|
||||
GlobalCharacterListOrder = 16,
|
||||
|
||||
Max = 15,
|
||||
Max = 17,
|
||||
|
||||
AllAccountDataCacheMask = 0x7FFF,
|
||||
GlobalCacheMask = 0x2515,
|
||||
PerCharacterCacheMask = 0x5AEA
|
||||
AllAccountDataCacheMask = 0x0001FFFFu,
|
||||
GlobalCacheMask = 0x0001A515u,
|
||||
PerCharacterCacheMask = 0x00005AEAu
|
||||
}
|
||||
|
||||
public enum TutorialAction
|
||||
|
||||
Reference in New Issue
Block a user