Core/PacketIO: Updated to 11.0.0

Port From (https://github.com/TrinityCore/TrinityCore/commit/e59eef5432c7b70679d33f4911c88d0f7d75fd39)
This commit is contained in:
Hondacrx
2024-09-02 18:44:55 -04:00
parent bd0d40fa13
commit f38ad4607e
74 changed files with 4980 additions and 3595 deletions
+15 -13
View File
@@ -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