mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
Fix applied for Quest Log, Bags, and money issues
Quests were not going into the Quest Log. Could not move items around in bags. Total money could not be viewed (always 0). Plus additional unrelated fix - incorrect parameter definition of function.
This commit is contained in:
parent
7ff711363d
commit
d19646ddf1
2 changed files with 2 additions and 2 deletions
|
|
@ -1549,7 +1549,7 @@ class Player : public Unit
|
|||
void SendQuestFailed(uint32 quest_id, InventoryResult reason = EQUIP_ERR_OK);
|
||||
void SendQuestTimerFailed(uint32 quest_id);
|
||||
void SendCanTakeQuestResponse(uint32 msg) const;
|
||||
void SendQuestConfirmAccept(Quest const* pQuest, Player* pReceiver);
|
||||
void SendQuestConfirmAccept(const Quest* pQuest, Player* pReceiver);
|
||||
void SendPushToPartyResponse(Player* pPlayer, uint32 msg);
|
||||
void SendQuestUpdateAddCreatureOrGo(Quest const* pQuest, ObjectGuid guid, uint32 creatureOrGO_idx, uint32 count);
|
||||
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@ enum EUnitFields
|
|||
UNIT_FIELD_HOVERHEIGHT = OBJECT_END + 0x87,
|
||||
UNIT_FIELD_MAXITEMLEVEL = OBJECT_END + 0x88,
|
||||
UNIT_FIELD_PADDING = OBJECT_END + 0x89,
|
||||
UNIT_END = OBJECT_END + 0x008E,
|
||||
UNIT_END = OBJECT_END + 0x8A
|
||||
};
|
||||
|
||||
enum EItemFields
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue