Core/Vendors: Support for vendors with empty inventory list

Port From (https://github.com/TrinityCore/TrinityCore/commit/bedc0503578b220b19d23559f670f65d26c8bc87)
This commit is contained in:
hondacrx
2021-10-03 22:27:11 -04:00
parent 6bc25f3227
commit 025595cba1
3 changed files with 11 additions and 10 deletions
+7 -1
View File
@@ -149,7 +149,7 @@ namespace Framework.Constants
}
public enum NPCFlags2
{
{
None = 0x00,
ItemUpgradeMaster = 0x01,
GarrisonArchitect = 0x02,
@@ -394,4 +394,10 @@ namespace Framework.Constants
Max
}
public enum VendorInventoryReason
{
None = 0,
Empty = 1
}
}