Fixed Typo

*Fixed typo on custom hook.
This commit is contained in:
talamortis
2018-07-18 19:48:44 +01:00
parent a5a130b95a
commit 8b1f2ece8a
3 changed files with 5 additions and 5 deletions

View File

@@ -246,7 +246,7 @@ class WorldScript : public ScriptObject
virtual void OnAfterConfigLoad(bool /*reload*/) { }
// Called when loading custom database tables
virtual void OnLoadCustomDatabeTable() { }
virtual void OnLoadCustomDatabaseTable() { }
// Called before the world configuration is (re)loaded.
virtual void OnBeforeConfigLoad(bool /*reload*/) { }
@@ -1135,7 +1135,7 @@ class ScriptMgr
public: /* WorldScript */
void OnLoadCustomDatabeTable();
void OnLoadCustomDatabaseTable();
void OnOpenStateChange(bool open);
void OnBeforeConfigLoad(bool reload);
void OnAfterConfigLoad(bool reload);