From e13c23160fa584362281406b034a417cc5dc349e Mon Sep 17 00:00:00 2001 From: n0n4m3 Date: Sat, 19 Dec 2009 10:29:12 +0100 Subject: Restore work Auction --HG-- branch : trunk --- src/game/AuctionHouseHandler.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/game/AuctionHouseHandler.cpp') diff --git a/src/game/AuctionHouseHandler.cpp b/src/game/AuctionHouseHandler.cpp index 12ed6fc797c..fdfea922c4f 100644 --- a/src/game/AuctionHouseHandler.cpp +++ b/src/game/AuctionHouseHandler.cpp @@ -162,8 +162,14 @@ void WorldSession::HandleAuctionSellItem(WorldPacket & recv_data) { uint64 auctioneer, item; uint32 etime, bid, buyout; - recv_data >> auctioneer >> item; - recv_data >> bid >> buyout >> etime; + recv_data >> auctioneer; + recv_data.read_skip(); // const 1? + recv_data >> item; + recv_data.read_skip(); // unk 3.2.2, const 1? + recv_data >> bid; + recv_data >> buyout; + recv_data >> etime; + Player *pl = GetPlayer(); if (!item || !bid || !etime) -- cgit v1.2.3