diff --git a/src/game/DBCStores.cpp b/src/game/DBCStores.cpp index 767785e..d5130b6 100644 --- a/src/game/DBCStores.cpp +++ b/src/game/DBCStores.cpp @@ -986,3 +986,4 @@ uint32 GetCreatureModelRace(uint32 model_id) MANGOS_DLL_SPEC DBCStorage const* GetCreatureDisplayStore() { return &sCreatureDisplayInfoStore; } MANGOS_DLL_SPEC DBCStorage const* GetEmotesStore() { return &sEmotesStore; } MANGOS_DLL_SPEC DBCStorage const* GetEmotesTextStore() { return &sEmotesTextStore; } +MANGOS_DLL_SPEC DBCStorage const* GetTitlesEntryStore() { return &sCharTitlesStore; } diff --git a/src/game/DBCStores.h b/src/game/DBCStores.h index cf2c583..31e3551 100644 --- a/src/game/DBCStores.h +++ b/src/game/DBCStores.h @@ -212,5 +212,6 @@ inline Difficulty GetPrevDifficulty(Difficulty diff, bool isRaid) MANGOS_DLL_SPEC DBCStorage const* GetCreatureDisplayStore(); MANGOS_DLL_SPEC DBCStorage const* GetEmotesStore(); MANGOS_DLL_SPEC DBCStorage const* GetEmotesTextStore(); +MANGOS_DLL_SPEC DBCStorage const* GetTitlesEntryStore(); #endif