Fix the AuctionHouseBot seller not posting auctions on some architectures/builds

The issue was a forgotten initialization.
This commit is contained in:
H0zen 2016-03-07 15:23:44 +02:00
parent c4aa484bea
commit e91cdfbdd1

View File

@ -388,7 +388,8 @@ INSTANTIATE_SINGLETON_1(AuctionBotConfig);
//== AuctionBotConfig functions ============================
AuctionBotConfig::AuctionBotConfig() : m_configFileName(AUCTIONHOUSEBOT_CONFIG_LOCATION)
AuctionBotConfig::AuctionBotConfig() : m_configFileName(AUCTIONHOUSEBOT_CONFIG_LOCATION),
m_configUint32Values(), m_configBoolValues()
{
}