diff options
| author | funjoker <torti-esser@web.de> | 2017-11-18 12:40:56 +0100 |
|---|---|---|
| committer | joschiwald <joschiwald.trinity@gmail.com> | 2017-11-18 12:40:56 +0100 |
| commit | 465012978f1f90a6917ba9129424d2bf749fe269 (patch) | |
| tree | 57ebde1cf34bee05face19c3a20b2e329e105cbb /src/server/scripts | |
| parent | 2fc628ae8d432247440e6073344d083a9f7cb018 (diff) | |
Core/Scripting: Implemented Conversation scripts (#20758)
Diffstat (limited to 'src/server/scripts')
| -rw-r--r-- | src/server/scripts/World/conversation_scripts.cpp | 20 | ||||
| -rw-r--r-- | src/server/scripts/World/world_script_loader.cpp | 2 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/server/scripts/World/conversation_scripts.cpp b/src/server/scripts/World/conversation_scripts.cpp new file mode 100644 index 00000000000..f00d5e8a75a --- /dev/null +++ b/src/server/scripts/World/conversation_scripts.cpp @@ -0,0 +1,20 @@ +/* + * Copyright (C) 2008-2017 TrinityCore <http://www.trinitycore.org/> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +void AddSC_conversation_scripts() +{ +} diff --git a/src/server/scripts/World/world_script_loader.cpp b/src/server/scripts/World/world_script_loader.cpp index e1a47362770..03187e13acc 100644 --- a/src/server/scripts/World/world_script_loader.cpp +++ b/src/server/scripts/World/world_script_loader.cpp @@ -20,6 +20,7 @@ // This is where scripts' loading functions should be declared: // world void AddSC_areatrigger_scripts(); +void AddSC_conversation_scripts(); void AddSC_emerald_dragons(); void AddSC_generic_creature(); void AddSC_go_scripts(); @@ -40,6 +41,7 @@ void AddSC_duel_reset(); void AddWorldScripts() { AddSC_areatrigger_scripts(); + AddSC_conversation_scripts(); AddSC_emerald_dragons(); AddSC_generic_creature(); AddSC_go_scripts(); |
