From a2eb37b010d332222877eebb6e1a0fa82b7cb95e Mon Sep 17 00:00:00 2001 From: runningnak3d Date: Tue, 3 May 2011 11:45:48 -0400 Subject: Revert "Core/AuctionHouse: Delete no longer linked item_instace entries due to an auction." This reverts commit ebcff354a284db3452327ca0d2da55c5ee35fea5. This needs more work. I thought the mail that was sent from expired auctions created a new item_instance, it does not. --- src/server/game/AuctionHouse/AuctionHouseMgr.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src') diff --git a/src/server/game/AuctionHouse/AuctionHouseMgr.cpp b/src/server/game/AuctionHouse/AuctionHouseMgr.cpp index 783e319f585..566133f63fd 100644 --- a/src/server/game/AuctionHouse/AuctionHouseMgr.cpp +++ b/src/server/game/AuctionHouse/AuctionHouseMgr.cpp @@ -705,12 +705,6 @@ uint32 AuctionEntry::GetAuctionOutBid() const void AuctionEntry::DeleteFromDB(SQLTransaction& trans) const { - // Delete the item_instance for this auction - PreparedStatement *stmtDelItem = CharacterDatabase.GetPreparedStatement(CHAR_DEL_ITEM_INSTANCE); - stmtDelItem->setUInt32(0, item_guidlow); - trans->Append(stmtDelItem); - - // Delete the auction itself PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_AUCTION); stmt->setUInt32(0, Id); trans->Append(stmt); -- cgit v1.2.3