Core/DataStores: Implemented new ContentTuning offset type

Port From (https://github.com/TrinityCore/TrinityCore/commit/584676e628a1ffd31800b18b7d6c7d00e9f390d1)
This commit is contained in:
Hondacrx
2024-08-25 14:07:58 -04:00
parent edb6934082
commit 2273f3f22d
2 changed files with 7 additions and 5 deletions
+4 -3
View File
@@ -1221,9 +1221,10 @@ namespace Framework.Constants
public enum ContentTuningCalcType
{
Base = 0,
PlusOne = 1,
PlusMaxLevelForExpansion = 2
None = 0,
MinLevel = 1,
MaxLevel = 2,
PrevExpansionMaxLevel = 3
}
[Flags]