summaryrefslogtreecommitdiff
path: root/docs/Create-a-Module.md
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2021-04-28 16:05:00 +0200
committerGitHub <noreply@github.com>2021-04-28 16:05:00 +0200
commit16008b7574d15c212c5dfa00a28dd16541a492bb (patch)
tree0bc4d5ab885a05b5b98a19368aadb8f34260ea72 /docs/Create-a-Module.md
parent8c23449c2f0ea6af65874bdecc15c8adc1df2633 (diff)
downloadwiki-16008b7574d15c212c5dfa00a28dd16541a492bb.tar.gz
wiki-16008b7574d15c212c5dfa00a28dd16541a492bb.tar.bz2
wiki-16008b7574d15c212c5dfa00a28dd16541a492bb.zip
Improve documentation for c++ hooks (#444)
Diffstat (limited to 'docs/Create-a-Module.md')
-rw-r--r--docs/Create-a-Module.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Create-a-Module.md b/docs/Create-a-Module.md
index 231ffec..cbdff12 100644
--- a/docs/Create-a-Module.md
+++ b/docs/Create-a-Module.md
@@ -7,9 +7,9 @@ Before start we suggest you to read [Documentation about modular structure](The-
- Module template: [https://github.com/azerothcore/skeleton-module](https://github.com/azerothcore/skeleton-module)
- Script template: https://github.com/azerothcore/azerothcore-boilerplates
-- All the hooks in the core are listed in [ScriptMgr.cpp](https://github.com/azerothcore/azerothcore-wotlk/blob/master/src/server/game/Scripting/ScriptMgr.cpp). If you need custom hooks, they can be added to the core.
-
+- All the hooks in the core are listed in [ScriptMgr.h](https://github.com/azerothcore/azerothcore-wotlk/blob/master/src/server/game/Scripting/ScriptMgr.h). If you need custom hooks, they can be added to the core by [sending a PR](https://www.azerothcore.org/wiki/How-to-create-a-PR).
+- If you need to create a new hook for your module, please follow this guide: [How to create a new hook](Hooks-Script.md)
### **The Basis**