diff options
author | jackpoz <giacomopoz@gmail.com> | 2015-02-13 23:39:58 +0100 |
---|---|---|
committer | jackpoz <giacomopoz@gmail.com> | 2015-02-13 23:39:58 +0100 |
commit | 2eee1b349f599f92f78c58418d128f386ef3b86d (patch) | |
tree | de06a7e0480b5decb1ddddca55dc8f513ba6e96d /src/server/game/AuctionHouseBot/AuctionHouseBot.cpp | |
parent | 2478bbcdb8f44c575714ae2f45aeef4a37556fc2 (diff) |
Core/AHBot: Fix AHBot bidding and correct logged AH type
Correct AuctionHouseType definition to log the right AH type.
Handle auctions without bidder but with a bid as bought by the AH Bot
Closes #14124
Diffstat (limited to 'src/server/game/AuctionHouseBot/AuctionHouseBot.cpp')
-rw-r--r-- | src/server/game/AuctionHouseBot/AuctionHouseBot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp b/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp index a04e4091778..c0c753100bc 100644 --- a/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp +++ b/src/server/game/AuctionHouseBot/AuctionHouseBot.cpp @@ -239,7 +239,7 @@ void AuctionBotConfig::GetConfigFromFile() char const* AuctionBotConfig::GetHouseTypeName(AuctionHouseType houseType) { - static char const* names[MAX_AUCTION_HOUSE_TYPE] = { "Alliance", "Horde", "Neutral" }; + static char const* names[MAX_AUCTION_HOUSE_TYPE] = { "Neutral", "Alliance", "Horde" }; return names[houseType]; } |