Core/Loot: Added type to LootStoreItem to replace reference != 0 checks

Port From (https://github.com/TrinityCore/TrinityCore/commit/7e70ea701e554c9e404683014cd3bc1cc4885eaf)
This commit is contained in:
Hondacrx
2024-09-26 21:22:15 -04:00
parent db5e3383d7
commit 57858e1bed
2 changed files with 292 additions and 251 deletions
+6
View File
@@ -1449,4 +1449,10 @@ namespace Framework.Constants
PriorityQuestItems = 0x20,
ExcludeJunkSell = 0x40,
}
public enum LootStoreItemType
{
Item = 0,
Reference = 1,
}
}