From d939fad517458260208abe0e80ce98b7050d10ea Mon Sep 17 00:00:00 2001 From: hondacrx Date: Fri, 6 Jan 2023 16:23:12 -0500 Subject: [PATCH] Core/Players: Implement saving edit mode account data Port From (https://github.com/TrinityCore/TrinityCore/commit/1fe89a370138cc4677131c1c4ce848249690a964) --- Source/Framework/Constants/AccountConst.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Source/Framework/Constants/AccountConst.cs b/Source/Framework/Constants/AccountConst.cs index 755d2805a..0bdb3cc23 100644 --- a/Source/Framework/Constants/AccountConst.cs +++ b/Source/Framework/Constants/AccountConst.cs @@ -32,12 +32,14 @@ namespace Framework.Constants GlobalFlaggedCache = 10, PerCharacterFlaggedCache = 11, PerCharacterClickBindingsCache = 12, + GlobalEditModeCache = 13, + PerCharacterEditModeCache = 14, - Max = 13, + Max = 15, - AllAccountDataCacheMask = 0x1FFF, - GlobalCacheMask = 0x515, - PerCharacterCacheMask = 0x1AEA + AllAccountDataCacheMask = 0x7FFF, + GlobalCacheMask = 0x2515, + PerCharacterCacheMask = 0x5AEA } public enum TutorialAction