Core/DBC: Remove store getters (useless since we don't have scripts as external dll)

This commit is contained in:
Shauren
2012-03-10 20:53:26 +01:00
parent 73282f9789
commit f85fdbebe7
12 changed files with 11 additions and 29 deletions

View File

@@ -67,7 +67,7 @@ void SystemMgr::LoadScriptTexts()
if (temp.uiSoundId)
{
if (!GetSoundEntriesStore()->LookupEntry(temp.uiSoundId))
if (!sSoundEntriesStore.LookupEntry(temp.uiSoundId))
sLog->outErrorDb("TSCR: Entry %i in table `script_texts` has soundId %u but sound does not exist.", iId, temp.uiSoundId);
}
@@ -129,7 +129,7 @@ void SystemMgr::LoadScriptTextsCustom()
if (temp.uiSoundId)
{
if (!GetSoundEntriesStore()->LookupEntry(temp.uiSoundId))
if (!sSoundEntriesStore.LookupEntry(temp.uiSoundId))
sLog->outErrorDb("TSCR: Entry %i in table `custom_texts` has soundId %u but sound does not exist.", iId, temp.uiSoundId);
}