Core/Creatures: implement CREATURE_FLAG_EXTRA_NO_SELL_VENDOR
Port From (https://github.com/TrinityCore/TrinityCore/commit/f8dda8a4fc696d07bb6007e49140cec1b7f60dd5)
This commit is contained in:
@@ -1144,12 +1144,13 @@ namespace Framework.Constants
|
||||
|
||||
public enum SellResult
|
||||
{
|
||||
CantFindItem = 1,
|
||||
CantSellItem = 2, // Merchant Doesn'T Like That Item
|
||||
CantFindVendor = 3, // Merchant Doesn'T Like You
|
||||
YouDontOwnThatItem = 4, // You Don'T Own That Item
|
||||
CantFindItem = 1, // The item was not found.
|
||||
CantSellItem = 2, // The merchant doesn't want that item.
|
||||
CantFindVendor = 3, // The merchant doesn't like you.
|
||||
YouDontOwnThatItem = 4, // You don't own that item.
|
||||
Unk = 5, // Nothing Appears...
|
||||
OnlyEmptyBag = 6 // Can Only Do With Empty Bags
|
||||
OnlyEmptyBag = 6, // You can only do that with empty bags.
|
||||
CantSellToThisMerchant = 7 // You cannot sell items to this merchant.
|
||||
}
|
||||
|
||||
public enum EnchantmentSlot
|
||||
|
||||
Reference in New Issue
Block a user