From 17fa069b8d57864b76ddd8b45309e6b3ad40813a Mon Sep 17 00:00:00 2001 From: milestorme Date: Sat, 2 Mar 2019 11:32:46 +1100 Subject: [PATCH] Fix build error added missing constructor --- src/AuctionHouseBot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AuctionHouseBot.cpp b/src/AuctionHouseBot.cpp index d9fb142..3dec109 100644 --- a/src/AuctionHouseBot.cpp +++ b/src/AuctionHouseBot.cpp @@ -717,7 +717,7 @@ void AuctionHouseBot::Update() if ((!AHBSeller) && (!AHBBuyer)) return; - WorldSession _session(AHBplayerAccount, NULL, SEC_PLAYER, sWorld->getIntConfig(CONFIG_EXPANSION), 0, LOCALE_zhCN,0,false,false); + WorldSession _session(AHBplayerAccount, NULL, SEC_PLAYER, sWorld->getIntConfig(CONFIG_EXPANSION), 0, LOCALE_zhCN,0,false,false,0); Player _AHBplayer(&_session); _AHBplayer.Initialize(AHBplayerGUID); sObjectAccessor->AddObject(&_AHBplayer);