Core/Items: Implemented packets setting up inventory cleanup parameters
Port From (https://github.com/TrinityCore/TrinityCore/commit/cc9241784491198581a19f3f5502a42d048ea063)
This commit is contained in:
@@ -1388,4 +1388,17 @@ namespace Framework.Constants
|
||||
HeartLevelTooLow = 11, // Arg: RequiredLevel
|
||||
NotEquipped = 12
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum BagSlotFlags
|
||||
{
|
||||
None = 0x00,
|
||||
DisableAutoSort = 0x01,
|
||||
PriorityEquipment = 0x02,
|
||||
PriorityConsumables = 0x04,
|
||||
PriorityTradeGoods = 0x08,
|
||||
PriorityJunk = 0x10,
|
||||
PriorityQuestItems = 0x20,
|
||||
ExcludeJunkSell = 0x40,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user