mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[11746] Fixed default value for AuctionHouseBot.Buyer.BuyPrice to false
as expected by default. Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
8606dcc25f
commit
41ca608c57
3 changed files with 4 additions and 4 deletions
|
|
@ -371,7 +371,7 @@ void AuctionBotConfig::GetConfigFromFile()
|
||||||
setConfig(CONFIG_BOOL_AHBOT_DEBUG_BUYER , "AuctionHouseBot.DEBUG.Buyer" , false);
|
setConfig(CONFIG_BOOL_AHBOT_DEBUG_BUYER , "AuctionHouseBot.DEBUG.Buyer" , false);
|
||||||
setConfig(CONFIG_BOOL_AHBOT_SELLER_ENABLED , "AuctionHouseBot.Seller.Enabled" , false);
|
setConfig(CONFIG_BOOL_AHBOT_SELLER_ENABLED , "AuctionHouseBot.Seller.Enabled" , false);
|
||||||
setConfig(CONFIG_BOOL_AHBOT_BUYER_ENABLED , "AuctionHouseBot.Buyer.Enabled" , false);
|
setConfig(CONFIG_BOOL_AHBOT_BUYER_ENABLED , "AuctionHouseBot.Buyer.Enabled" , false);
|
||||||
setConfig(CONFIG_BOOL_AHBOT_BUYPRICE_BUYER , "AuctionHouseBot.Buyer.Buyprice" , true);
|
setConfig(CONFIG_BOOL_AHBOT_BUYPRICE_BUYER , "AuctionHouseBot.Buyer.BuyPrice" , false);
|
||||||
|
|
||||||
setConfig(CONFIG_UINT32_AHBOT_CLASS_MISC_MOUNT_MIN_REQ_LEVEL , "AuctionHouseBot.Class.Misc.Mount.ReqLevel.Min" , 0);
|
setConfig(CONFIG_UINT32_AHBOT_CLASS_MISC_MOUNT_MIN_REQ_LEVEL , "AuctionHouseBot.Class.Misc.Mount.ReqLevel.Min" , 0);
|
||||||
setConfig(CONFIG_UINT32_AHBOT_CLASS_MISC_MOUNT_MAX_REQ_LEVEL , "AuctionHouseBot.Class.Misc.Mount.ReqLevel.Max" , 0);
|
setConfig(CONFIG_UINT32_AHBOT_CLASS_MISC_MOUNT_MAX_REQ_LEVEL , "AuctionHouseBot.Class.Misc.Mount.ReqLevel.Max" , 0);
|
||||||
|
|
|
||||||
|
|
@ -240,7 +240,7 @@ AuctionHouseBot.forceExcludeItems = ""
|
||||||
# AuctionHouseBot.Buyer.FACTION.Enabled
|
# AuctionHouseBot.Buyer.FACTION.Enabled
|
||||||
# Enable or disable buyer independently by faction
|
# Enable or disable buyer independently by faction
|
||||||
#
|
#
|
||||||
# AuctionHouseBot.BuyPrice.Buyer
|
# AuctionHouseBot.Buyer.BuyPrice
|
||||||
# Should the Buyer use BuyPrice or SellPrice to determine Bid Prices
|
# Should the Buyer use BuyPrice or SellPrice to determine Bid Prices
|
||||||
# Default 0 (use SellPrice)
|
# Default 0 (use SellPrice)
|
||||||
#
|
#
|
||||||
|
|
@ -266,7 +266,7 @@ AuctionHouseBot.Buyer.Alliance.Enabled = 1
|
||||||
AuctionHouseBot.Buyer.Horde.Enabled = 1
|
AuctionHouseBot.Buyer.Horde.Enabled = 1
|
||||||
AuctionHouseBot.Buyer.Neutral.Enabled = 1
|
AuctionHouseBot.Buyer.Neutral.Enabled = 1
|
||||||
|
|
||||||
AuctionHouseBot.Buyer.Buyprice = 1
|
AuctionHouseBot.Buyer.BuyPrice = 0
|
||||||
|
|
||||||
AuctionHouseBot.Buyer.Recheck.Interval = 20
|
AuctionHouseBot.Buyer.Recheck.Interval = 20
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "11745"
|
#define REVISION_NR "11746"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue