diff options
| author | maximius <none@none> | 2009-11-20 15:06:21 -0800 |
|---|---|---|
| committer | maximius <none@none> | 2009-11-20 15:06:21 -0800 |
| commit | 4072c0bdbf77cb1456d5b5f8e77f40d58b0ff154 (patch) | |
| tree | 0e769270b7053fdf5bab2dac89e60128777e5f9e /src/game/AuctionHouseHandler.cpp | |
| parent | f18767dc77a6878923cf55aa2c9fc7913816f636 (diff) | |
*Different creature searcher method for Dalaran Mageguards, thanks manuel
*Fix a minor typo in recent AH change that (probably) prevented anybody from bidding, sorry D:
--HG--
branch : trunk
Diffstat (limited to 'src/game/AuctionHouseHandler.cpp')
| -rw-r--r-- | src/game/AuctionHouseHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/AuctionHouseHandler.cpp b/src/game/AuctionHouseHandler.cpp index 5ccdf02e0d1..06259d0d6b9 100644 --- a/src/game/AuctionHouseHandler.cpp +++ b/src/game/AuctionHouseHandler.cpp @@ -326,7 +326,7 @@ void WorldSession::HandleAuctionPlaceBid(WorldPacket & recv_data) } // cheating - if (price <= auction->bid || price <= auction->startbid) + if (price <= auction->bid || price < auction->startbid) return; // price too low for next bid if not buyout |
