Core/Items: Fixed heirloom items counting for item set bonuses past their max scaling level and implemented new heirloom upgrade levels

Port From (https://github.com/TrinityCore/TrinityCore/commit/3c12a189e430b1b6e0a452f272860f58b2dca7bd)
This commit is contained in:
hondacrx
2022-01-28 17:33:49 -05:00
parent 26bec9ecb4
commit a1411aef94
5 changed files with 66 additions and 67 deletions
+6 -4
View File
@@ -721,10 +721,12 @@ namespace Framework.Constants
public enum HeirloomPlayerFlags
{
None = 0x00,
BonusLevel90 = 0x01,
BonusLevel100 = 0x02,
BonusLevel110 = 0x04,
BonusLevel120 = 0x08
UpgradeLevel1 = 0x01,
UpgradeLevel2 = 0x02,
UpgradeLevel3 = 0x04,
UpgradeLevel4 = 0x08,
UpgradeLevel5 = 0x10,
UpgradeLevel6 = 0x20,
}
public enum HeirloomItemFlags