Skip to content

Commit

Permalink
Add placeholder for Maraudon instance
Browse files Browse the repository at this point in the history
  • Loading branch information
cala committed Jan 12, 2018
1 parent da69d77 commit 159b608
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
@@ -0,0 +1,31 @@
/* This file is part of the ScriptDev2 Project. See AUTHORS file for Copyright information
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

/* ScriptData
SDName: instance_maraudon
SD%Complete: 0
SDComment:
SDCategory: Maraudon
EndScriptData
*/

#include "AI/ScriptDevAI/include/precompiled.h"
#include "maraudon.h"

void AddSC_instance_maraudon()
{
}
10 changes: 10 additions & 0 deletions src/game/AI/ScriptDevAI/scripts/kalimdor/maraudon/maraudon.h
@@ -0,0 +1,10 @@
/* This file is part of the ScriptDev2 Project. See AUTHORS file for Copyright information
* This program is free software licensed under GPL version 2
* Please see the included DOCS/LICENSE.TXT for more information */

#ifndef DEF_MAR_H
#define DEF_MAR_H



#endif
6 changes: 4 additions & 2 deletions src/game/AI/ScriptDevAI/system/ScriptLoader.cpp
Expand Up @@ -183,7 +183,8 @@ extern void AddSC_culling_of_stratholme(); // COT, culling_of_s
extern void AddSC_instance_culling_of_stratholme();
extern void AddSC_dire_maul(); // dire_maul
extern void AddSC_instance_dire_maul();
extern void AddSC_boss_noxxion(); // maraudon
extern void AddSC_instance_maraudon(); // maraudon
extern void AddSC_boss_noxxion();
extern void AddSC_boss_onyxia(); // onyxias_lair
extern void AddSC_instance_onyxias_lair();
extern void AddSC_instance_razorfen_downs(); // razorfen_downs
Expand Down Expand Up @@ -656,7 +657,8 @@ void AddScripts()
AddSC_instance_culling_of_stratholme();
AddSC_dire_maul(); // dire_maul
AddSC_instance_dire_maul();
AddSC_boss_noxxion(); // maraudon
AddSC_instance_maraudon(); // maraudon
AddSC_boss_noxxion();
AddSC_boss_onyxia(); // onyxias_lair
AddSC_instance_onyxias_lair();
AddSC_instance_razorfen_downs(); // razorfen_downs
Expand Down

0 comments on commit 159b608

Please sign in to comment.