summaryrefslogtreecommitdiff
path: root/src/server/scripts/ScriptLoader.cpp
diff options
context:
space:
mode:
authorYehonal <yehonal.azeroth@gmail.com>2017-12-21 11:26:43 +0100
committerYehonal <yehonal.azeroth@gmail.com>2017-12-21 11:26:43 +0100
commit403ed2600f39c1105b6641086808a6cdafbca1c5 (patch)
tree0422298438422af22f3f0723dfa62f66e10510f1 /src/server/scripts/ScriptLoader.cpp
parentacd60005e833efee3a10a2f1a4aee7ecced4cc97 (diff)
parenta0d17509a2c0b06d9e74c01d3fe7dc4df2c5c9a7 (diff)
Merge branch 'master' of https://github.com/azerothcore/azerothcore-wotlk into dir-restructure
Diffstat (limited to 'src/server/scripts/ScriptLoader.cpp')
-rw-r--r--src/server/scripts/ScriptLoader.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/server/scripts/ScriptLoader.cpp b/src/server/scripts/ScriptLoader.cpp
index d948a18c55..a5e9f710e9 100644
--- a/src/server/scripts/ScriptLoader.cpp
+++ b/src/server/scripts/ScriptLoader.cpp
@@ -46,6 +46,7 @@ void AddSC_list_commandscript();
void AddSC_lookup_commandscript();
void AddSC_message_commandscript();
void AddSC_misc_commandscript();
+void AddSC_mmaps_commandscript();
void AddSC_modify_commandscript();
void AddSC_npc_commandscript();
void AddSC_quest_commandscript();
@@ -616,6 +617,7 @@ void AddCommandScripts()
AddSC_lookup_commandscript();
AddSC_message_commandscript();
AddSC_misc_commandscript();
+ AddSC_mmaps_commandscript();
AddSC_modify_commandscript();
AddSC_npc_commandscript();
AddSC_quest_commandscript();
@@ -1169,3 +1171,15 @@ void AddOutdoorPvPScripts()
#endif
}
+
+//~ ********************** Put your custom scripts below, like the commented examples, uncomment and edit *************************************
+
+
+//~ void AddSC_MySuperScript();
+
+void AddCustomScripts()
+{
+#ifdef SCRIPTS
+ //~ AddSC_MySuperScript();
+#endif
+}