From ee9d27ad1617da3c22ec834e1424f978fbbf28c2 Mon Sep 17 00:00:00 2001 From: bdebae Date: Wed, 29 Jun 2016 20:41:50 +0100 Subject: [PATCH] Prevent duplicate Auction Expired mails --- src/game/Object/AuctionHouseMgr.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/game/Object/AuctionHouseMgr.cpp b/src/game/Object/AuctionHouseMgr.cpp index 5fd07f49..90d34220 100644 --- a/src/game/Object/AuctionHouseMgr.cpp +++ b/src/game/Object/AuctionHouseMgr.cpp @@ -843,10 +843,6 @@ bool AuctionEntry::UpdateBid(uint32 newbid, Player* newbidder /*=NULL*/) } else // buyout { - if (auction_owner) - { - auction_owner->GetSession()->SendAuctionOwnerNotification(this, false); - } AuctionBidWinning(newbidder); return false; }