summaryrefslogtreecommitdiff
path: root/src/server/scripts/ScriptLoader.cpp.in.cmake
diff options
context:
space:
mode:
authorKargatum <dowlandtop@yandex.com>2021-12-02 20:28:58 +0700
committerGitHub <noreply@github.com>2021-12-02 20:28:58 +0700
commit51adbffae43aaf56e268e1cf2d39057f5c6a17c7 (patch)
tree082eee3902a339646eaa55a603f1871cc7c4a4ec /src/server/scripts/ScriptLoader.cpp.in.cmake
parent8668a03e145d6ec43a52e5e2615a35e4db1d3943 (diff)
feat(Core/Modules): add separated lib for modules (#9281)
Diffstat (limited to 'src/server/scripts/ScriptLoader.cpp.in.cmake')
-rw-r--r--src/server/scripts/ScriptLoader.cpp.in.cmake10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/server/scripts/ScriptLoader.cpp.in.cmake b/src/server/scripts/ScriptLoader.cpp.in.cmake
index 303218ec5c..a994096273 100644
--- a/src/server/scripts/ScriptLoader.cpp.in.cmake
+++ b/src/server/scripts/ScriptLoader.cpp.in.cmake
@@ -24,10 +24,6 @@
#include <vector>
#include <string>
-// Add deprecated api loaders include
-@AC_SCRIPTS_INCLUDES@
-// Add module scripts define
-@AC_MODULE_LIST@
// Add default scripts include
@ACORE_SCRIPTS_FORWARD_DECL@
#ifdef ACORE_IS_DYNAMIC_SCRIPTLOADER
@@ -56,10 +52,8 @@ AC_SCRIPT_API char const* GetScriptModule()
/// Exposed in script modules to register all scripts to the ScriptMgr.
AC_SCRIPT_API void AddScripts()
{
- // Default scripts and modules
-@ACORE_SCRIPTS_INVOKE@
- // Deprecated api modules
-@AC_SCRIPTS_LIST@}
+ // Default scripts
+@ACORE_SCRIPTS_INVOKE@}
/// Exposed in script modules to get the build directive of the module.
AC_SCRIPT_API char const* GetBuildDirective()