diff options
author | megamage <none@none> | 2009-03-07 00:54:55 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-07 00:54:55 -0600 |
commit | d713beef29933ab5df52057699030b18e047ee63 (patch) | |
tree | 095d1c0fb0f84625cc1c4a68aef115cb4d8c87a6 /src/shared/Database/DBCStores.cpp | |
parent | 6dc06ab53b2e5307b682c5723b3c6fd62318633e (diff) | |
parent | 544ff30daea497869132a70b597bbc0b5bcdc2ba (diff) |
*Merge.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/DBCStores.cpp')
-rw-r--r-- | src/shared/Database/DBCStores.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared/Database/DBCStores.cpp b/src/shared/Database/DBCStores.cpp index 67b806cd632..2031457ceaf 100644 --- a/src/shared/Database/DBCStores.cpp +++ b/src/shared/Database/DBCStores.cpp @@ -36,6 +36,7 @@ static AreaFlagByAreaID sAreaFlagByAreaID; static AreaFlagByMapID sAreaFlagByMapID; // for instances without generated *.map files DBCStorage <AreaTriggerEntry> sAreaTriggerStore(AreaTriggerEntryfmt); +DBCStorage <AuctionHouseEntry> sAuctionHouseStore(AuctionHouseEntryfmt); DBCStorage <BankBagSlotPricesEntry> sBankBagSlotPricesStore(BankBagSlotPricesEntryfmt); DBCStorage <BattlemasterListEntry> sBattlemasterListStore(BattlemasterListEntryfmt); DBCStorage <CharStartOutfitEntry> sCharStartOutfitStore(CharStartOutfitEntryfmt); @@ -178,7 +179,7 @@ void LoadDBCStores(const std::string& dataPath) { std::string dbcPath = dataPath+"dbc/"; - const uint32 DBCFilesCount = 56; + const uint32 DBCFilesCount = 57; barGoLink bar( DBCFilesCount ); @@ -202,6 +203,7 @@ void LoadDBCStores(const std::string& dataPath) } LoadDBC(availableDbcLocales,bar,bad_dbc_files,sAreaTriggerStore, dbcPath,"AreaTrigger.dbc"); + LoadDBC(availableDbcLocales,bar,bad_dbc_files,sAuctionHouseStore, dbcPath,"AuctionHouse.dbc"); LoadDBC(availableDbcLocales,bar,bad_dbc_files,sBankBagSlotPricesStore, dbcPath,"BankBagSlotPrices.dbc"); LoadDBC(availableDbcLocales,bar,bad_dbc_files,sBattlemasterListStore, dbcPath,"BattlemasterList.dbc"); LoadDBC(availableDbcLocales,bar,bad_dbc_files,sCharStartOutfitStore, dbcPath,"CharStartOutfit.dbc"); |