diff options
author | megamage <none@none> | 2009-03-02 17:03:36 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-02 17:03:36 -0600 |
commit | 66809d5dc1c5ee1af9d79b93861de0721ec055bb (patch) | |
tree | dd8a9596426df8977da817e1fee16c1a95d1b484 /src | |
parent | 8f874caccd21cbc6f2b2ee1192b32ab1b096db3e (diff) |
[7367] Restore one more time broken auctions work. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/AuctionHouseMgr.cpp | 2 | ||||
-rw-r--r-- | src/shared/revision_nr.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/game/AuctionHouseMgr.cpp b/src/game/AuctionHouseMgr.cpp index c89f0c48380..3c63b5f39ad 100644 --- a/src/game/AuctionHouseMgr.cpp +++ b/src/game/AuctionHouseMgr.cpp @@ -645,7 +645,7 @@ bool AuctionEntry::BuildAuctionInfo(WorldPacket & data) const data << uint32(pItem->GetCount()); //item->count data << uint32(pItem->GetSpellCharges()); //item->charge FFFFFFF data << uint32(0); //Unknown - data << uint32(owner); //Auction->owner + data << uint64(owner); //Auction->owner data << uint32(startbid); //Auction->startbid (not sure if useful) data << uint32(bid ? GetAuctionOutBid() : 0); //minimal outbid diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ec8cdbfe75c..926ee348538 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7366" + #define REVISION_NR "7367" #endif // __REVISION_NR_H__ |