feat(Core/DB): Add Hooks On creature/game object save to db (#11246)
* implement OnCreatureSaveToDB and OnGameObjectSaveToDB Hooks * fix Whitespaces in ScriptMgr.h Co-authored-by: Timothée Moos <t1997.m@gmx.net>
This commit is contained in:
parent
7975bc63ca
commit
6cf82e3bd6
5 changed files with 39 additions and 1 deletions
|
|
@ -37,3 +37,13 @@ void ScriptMgr::OnGameObjectRemoveWorld(GameObject* go)
|
|||
script->OnGameObjectRemoveWorld(go);
|
||||
});
|
||||
}
|
||||
|
||||
void ScriptMgr::OnGameObjectSaveToDB(GameObject* go)
|
||||
{
|
||||
ASSERT(go);
|
||||
|
||||
ExecuteScript<AllGameObjectScript>([&](AllGameObjectScript* script)
|
||||
{
|
||||
script->OnGameObjectSaveToDB(go);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue