*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

@@ -7553,6 +7553,16 @@ ObjectMgr::ScriptNameMap & GetScriptNames()
return objmgr.GetScriptNames();
}
GameObjectInfo const *GetGameObjectInfo(uint32 id)
{
return objmgr.GetGameObjectInfo(id);
}
CreatureInfo const *GetCreatureInfo(uint32 id)
{
return objmgr.GetCreatureTemplate(id);
}
void ObjectMgr::LoadTransportEvents()
{