diff --git a/Source/Framework/Constants/PlayerConst.cs b/Source/Framework/Constants/PlayerConst.cs index e660c8ed7..2a40ffb9f 100644 --- a/Source/Framework/Constants/PlayerConst.cs +++ b/Source/Framework/Constants/PlayerConst.cs @@ -67,7 +67,7 @@ namespace Framework.Constants //Azerite public const uint ItemIdHeartOfAzeroth = 158075; - public const uint MaxAzeriteItemLevel = 70; + public const uint MaxAzeriteItemLevel = 129; public const uint MaxAzeriteItemKnowledgeLevel = 30; public const uint PlayerConditionIdUnlockedAzeriteEssences = 69048; public const uint SpellIdHeartEssenceActionBarOverride = 298554; diff --git a/Source/Game/Entities/Item/AzeriteItem.cs b/Source/Game/Entities/Item/AzeriteItem.cs index cc116de9d..5ec77ca9f 100644 --- a/Source/Game/Entities/Item/AzeriteItem.cs +++ b/Source/Game/Entities/Item/AzeriteItem.cs @@ -228,9 +228,9 @@ namespace Game.Entities uint GetCurrentKnowledgeLevel() { - // count weeks from 26.06.2019 + // count weeks from 14.01.2020 DateTime now = GameTime.GetDateAndTime(); - DateTime beginDate = new DateTime(2019, 6, 26); + DateTime beginDate = new DateTime(2020, 1, 14); uint knowledge = 0; while (beginDate < now && knowledge < PlayerConst.MaxAzeriteItemKnowledgeLevel) {