diff options
| author | Ayrton Stout <ayrtonstout@u.boisestate.edu> | 2016-12-31 15:47:41 -0700 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2016-12-31 23:47:41 +0100 |
| commit | 4df1b28054e6712954dceb8c71b18b4b2ef2e972 (patch) | |
| tree | 9167b59ab5c06e54df83847a6b4b70a2f31b03d9 /src/server/worldserver | |
| parent | a5f12ec151320e61232b3280981518529d3ff09f (diff) | |
Fixed array size bug with the auction house bid price. Lowered the default max bid price (#18697)
Closes #18698
Diffstat (limited to 'src/server/worldserver')
| -rw-r--r-- | src/server/worldserver/worldserver.conf.dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/worldserver/worldserver.conf.dist b/src/server/worldserver/worldserver.conf.dist index 74d93409d45..6bb8b400230 100644 --- a/src/server/worldserver/worldserver.conf.dist +++ b/src/server/worldserver/worldserver.conf.dist @@ -3227,10 +3227,10 @@ AuctionHouseBot.BuyPrice.Seller = 1 # AuctionHouseBot.BidPrice.* # Description: These values determine the range that the Bid Price will fall into, as a percentage of the Buy Price # Default: 0.6 - (Min) -# 1.4 - (Max) +# 0.9 - (Max) AuctionHouseBot.BidPrice.Min = 0.6 -AuctionHouseBot.BidPrice.Max = 1.4 +AuctionHouseBot.BidPrice.Max = 0.9 # # AuctionHouseBot.Alliance.Price.Ratio |
