Merge branch 'master' into Playerbot

This commit is contained in:
Yunfan Li
2024-02-06 17:51:47 +08:00
32 changed files with 1008 additions and 61 deletions

View File

@@ -771,6 +771,14 @@ struct ItemPosCount
};
typedef std::vector<ItemPosCount> ItemPosCountVec;
struct SavedItem
{
Item* item;
uint16 dstpos;
SavedItem(Item* _item, uint16 dstpos) : item(_item), dstpos(dstpos) {}
};
enum TransferAbortReason
{
TRANSFER_ABORT_NONE = 0x00,