*Allow scripts to override SQL and DBC data.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-02-05 15:38:24 -06:00
parent 649ab47d54
commit 2aff5260ea
6 changed files with 40 additions and 5 deletions

View File

@@ -64,6 +64,8 @@ uint32 EAI_ErrorLevel;
//*** End EventAI data ***
void FillSpellSummary();
void LoadOverridenSQLData();
void LoadOverridenDBCData();
// -- Scripts to be added --
@@ -1816,6 +1818,11 @@ void ScriptsInit()
// -------------------
outstring_log(">> Loaded %i C++ Scripts.", num_sc_scripts);
outstring_log(">> Load Overriden SQL Data.");
LoadOverridenSQLData();
outstring_log(">> Load Overriden DBC Data.");
LoadOverridenDBCData();
}
//*********************************