Skip to content

Commit 47d26cd

Browse files
evil-at-wowxfurry
authored andcommitted
[c3037] Remove all traces of MANGOS_DLL_DECL, which is a useless define these days. See cmangos/issues#402 for details.
Signed-off-by: xfurry <[email protected]> (based on commit [3038] - 75016af) Signed-off-by: Xfurry <[email protected]>
1 parent de8710f commit 47d26cd

File tree

419 files changed

+847
-847
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

419 files changed

+847
-847
lines changed

base/escort_ai.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ enum EscortState
3333
STATE_ESCORT_PAUSED = 0x004 // will not proceed with waypoints before state is removed
3434
};
3535

36-
struct MANGOS_DLL_DECL npc_escortAI : public ScriptedAI
36+
struct npc_escortAI : public ScriptedAI
3737
{
3838
public:
3939
explicit npc_escortAI(Creature* pCreature);

base/follower_ai.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ enum FollowState
1616
STATE_FOLLOW_POSTEVENT = 0x020 // can be set at complete and allow post event to run
1717
};
1818

19-
class MANGOS_DLL_DECL FollowerAI : public ScriptedAI
19+
class FollowerAI : public ScriptedAI
2020
{
2121
public:
2222
explicit FollowerAI(Creature* pCreature);

base/guard_ai.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ enum eShattrathGuard
2424
SPELL_EXILE = 39533
2525
};
2626

27-
struct MANGOS_DLL_DECL guardAI : public ScriptedAI
27+
struct guardAI : public ScriptedAI
2828
{
2929
public:
3030
explicit guardAI(Creature* pCreature);
@@ -45,14 +45,14 @@ struct MANGOS_DLL_DECL guardAI : public ScriptedAI
4545
void DoReplyToTextEmote(uint32 uiTextEmote);
4646
};
4747

48-
struct MANGOS_DLL_DECL guardAI_orgrimmar : public guardAI
48+
struct guardAI_orgrimmar : public guardAI
4949
{
5050
guardAI_orgrimmar(Creature* pCreature) : guardAI(pCreature) {}
5151

5252
void ReceiveEmote(Player* pPlayer, uint32 uiTextEmote) override;
5353
};
5454

55-
struct MANGOS_DLL_DECL guardAI_stormwind : public guardAI
55+
struct guardAI_stormwind : public guardAI
5656
{
5757
guardAI_stormwind(Creature* pCreature) : guardAI(pCreature) {}
5858

base/pet_ai.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#define SC_PET_H
77

88
// Using CreatureAI for now. Might change later and use PetAI (need to export for dll first)
9-
class MANGOS_DLL_DECL ScriptedPetAI : public CreatureAI
9+
class ScriptedPetAI : public CreatureAI
1010
{
1111
public:
1212
explicit ScriptedPetAI(Creature* pCreature);

include/sc_creature.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ enum SCEquip
4141

4242
/// Documentation of CreatureAI functions can be found in MaNGOS source
4343
// Only list them here again to ensure that the interface between SD2 and the core is not changed unnoticed
44-
struct MANGOS_DLL_DECL ScriptedAI : public CreatureAI
44+
struct ScriptedAI : public CreatureAI
4545
{
4646
public:
4747
explicit ScriptedAI(Creature* pCreature);
@@ -221,7 +221,7 @@ struct MANGOS_DLL_DECL ScriptedAI : public CreatureAI
221221
uint32 m_uiEvadeCheckCooldown;
222222
};
223223

224-
struct MANGOS_DLL_DECL Scripted_NoMovementAI : public ScriptedAI
224+
struct Scripted_NoMovementAI : public ScriptedAI
225225
{
226226
Scripted_NoMovementAI(Creature* pCreature) : ScriptedAI(pCreature)
227227
{

include/sc_instance.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ enum EncounterState
2323
#define OUT_LOAD_INST_DATA_COMPLETE debug_log("SD2: Instance Data Load for Instance %s (Map %d, Instance Id: %d) is complete.", instance->GetMapName(), instance->GetId(), instance->GetInstanceId())
2424
#define OUT_LOAD_INST_DATA_FAIL script_error_log("Unable to load Instance Data for Instance %s (Map %d, Instance Id: %d).", instance->GetMapName(), instance->GetId(), instance->GetInstanceId())
2525

26-
class MANGOS_DLL_DECL ScriptedInstance : public InstanceData
26+
class ScriptedInstance : public InstanceData
2727
{
2828
public:
2929
ScriptedInstance(Map* pMap) : InstanceData(pMap) {}
@@ -69,7 +69,7 @@ class MANGOS_DLL_DECL ScriptedInstance : public InstanceData
6969
};
7070

7171
// Class for world maps (May need additional zone-wide functions later on)
72-
class MANGOS_DLL_DECL ScriptedMap : public ScriptedInstance
72+
class ScriptedMap : public ScriptedInstance
7373
{
7474
public:
7575
ScriptedMap(Map* pMap) : ScriptedInstance(pMap) {}

scripts/battlegrounds/battleground.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ enum
4545
SPELL_WAITING_TO_RESURRECT = 2584 // players who cancel this aura don't want a resurrection
4646
};
4747

48-
struct MANGOS_DLL_DECL npc_spirit_guideAI : public ScriptedAI
48+
struct npc_spirit_guideAI : public ScriptedAI
4949
{
5050
npc_spirit_guideAI(Creature* pCreature) : ScriptedAI(pCreature)
5151
{

scripts/eastern_kingdoms/arathi_highlands.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ enum
5050
ENTRY_VENGEFUL_SURGE = 2776
5151
};
5252

53-
struct MANGOS_DLL_DECL npc_professor_phizzlethorpeAI : public npc_escortAI
53+
struct npc_professor_phizzlethorpeAI : public npc_escortAI
5454
{
5555
npc_professor_phizzlethorpeAI(Creature* pCreature) : npc_escortAI(pCreature) { Reset(); }
5656

@@ -141,7 +141,7 @@ enum
141141
QUEST_HINTS_NEW_PLAGUE = 660
142142
};
143143

144-
struct MANGOS_DLL_DECL npc_kineloryAI : public npc_escortAI
144+
struct npc_kineloryAI : public npc_escortAI
145145
{
146146
npc_kineloryAI(Creature* pCreature) : npc_escortAI(pCreature) { Reset(); }
147147

scripts/eastern_kingdoms/blackrock_mountain/blackrock_caverns/blackrock_caverns.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ enum
2222
NPC_OBSIDIUS = 39705,
2323
};
2424

25-
class MANGOS_DLL_DECL instance_blackrock_caverns : public ScriptedInstance
25+
class instance_blackrock_caverns : public ScriptedInstance
2626
{
2727
public:
2828
instance_blackrock_caverns(Map* pMap);

scripts/eastern_kingdoms/blackrock_mountain/blackrock_caverns/boss_beauty.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enum
2929
// ToDo: add spells and yells here
3030
};
3131

32-
struct MANGOS_DLL_DECL boss_beautyAI : public ScriptedAI
32+
struct boss_beautyAI : public ScriptedAI
3333
{
3434
boss_beautyAI(Creature* pCreature) : ScriptedAI(pCreature)
3535
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_caverns/boss_corla.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enum
2929
// ToDo: add spells and yells here
3030
};
3131

32-
struct MANGOS_DLL_DECL boss_corlaAI : public ScriptedAI
32+
struct boss_corlaAI : public ScriptedAI
3333
{
3434
boss_corlaAI(Creature* pCreature) : ScriptedAI(pCreature)
3535
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_caverns/boss_karsh_steelbender.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enum
2929
// ToDo: add spells and yells here
3030
};
3131

32-
struct MANGOS_DLL_DECL boss_karsh_steelbenderAI : public ScriptedAI
32+
struct boss_karsh_steelbenderAI : public ScriptedAI
3333
{
3434
boss_karsh_steelbenderAI(Creature* pCreature) : ScriptedAI(pCreature)
3535
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_caverns/boss_lord_obsidius.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enum
2929
// ToDo: add spells and yells here
3030
};
3131

32-
struct MANGOS_DLL_DECL boss_lord_obsidiusAI : public ScriptedAI
32+
struct boss_lord_obsidiusAI : public ScriptedAI
3333
{
3434
boss_lord_obsidiusAI(Creature* pCreature) : ScriptedAI(pCreature)
3535
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_caverns/boss_romogg.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enum
2929
// ToDo: add spells and yells here
3030
};
3131

32-
struct MANGOS_DLL_DECL boss_romoggAI : public ScriptedAI
32+
struct boss_romoggAI : public ScriptedAI
3333
{
3434
boss_romoggAI(Creature* pCreature) : ScriptedAI(pCreature)
3535
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/blackrock_depths.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ bool AreaTrigger_at_ring_of_law(Player* pPlayer, AreaTriggerEntry const* pAt)
158158
## npc_grimstone
159159
######*/
160160

161-
struct MANGOS_DLL_DECL npc_grimstoneAI : public npc_escortAI
161+
struct npc_grimstoneAI : public npc_escortAI
162162
{
163163
npc_grimstoneAI(Creature* pCreature) : npc_escortAI(pCreature)
164164
{
@@ -550,7 +550,7 @@ enum
550550
QUEST_ALE = 4295
551551
};
552552

553-
struct MANGOS_DLL_DECL npc_rocknotAI : public npc_escortAI
553+
struct npc_rocknotAI : public npc_escortAI
554554
{
555555
npc_rocknotAI(Creature* pCreature) : npc_escortAI(pCreature)
556556
{
@@ -724,7 +724,7 @@ enum
724724
QUEST_JAIL_BREAK = 4322
725725
};
726726

727-
struct MANGOS_DLL_DECL npc_marshal_windsorAI : public npc_escortAI
727+
struct npc_marshal_windsorAI : public npc_escortAI
728728
{
729729
npc_marshal_windsorAI(Creature* m_creature) : npc_escortAI(m_creature)
730730
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/blackrock_depths.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ static const float aVaultPositions[4] = {821.905f, -338.382f, -50.134f, 3.78736f
118118
// Tomb of the Seven dwarfs
119119
static const uint32 aTombDwarfes[MAX_DWARFS] = {NPC_ANGERREL, NPC_SEETHREL, NPC_DOPEREL, NPC_GLOOMREL, NPC_VILEREL, NPC_HATEREL, NPC_DOOMREL};
120120

121-
class MANGOS_DLL_DECL instance_blackrock_depths : public ScriptedInstance
121+
class instance_blackrock_depths : public ScriptedInstance
122122
{
123123
public:
124124
instance_blackrock_depths(Map* pMap);

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/boss_ambassador_flamelash.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ enum
3232
NPC_BURNING_SPIRIT = 9178,
3333
};
3434

35-
struct MANGOS_DLL_DECL boss_ambassador_flamelashAI : public ScriptedAI
35+
struct boss_ambassador_flamelashAI : public ScriptedAI
3636
{
3737
boss_ambassador_flamelashAI(Creature* pCreature) : ScriptedAI(pCreature) {Reset();}
3838

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/boss_coren_direbrew.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ enum
5757
MAX_DIREBREW_MINIONS = 3,
5858
};
5959

60-
struct MANGOS_DLL_DECL boss_coren_direbrewAI : public ScriptedAI
60+
struct boss_coren_direbrewAI : public ScriptedAI
6161
{
6262
boss_coren_direbrewAI(Creature* pCreature) : ScriptedAI(pCreature) { Reset(); }
6363

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/boss_emperor_dagran_thaurissan.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ enum eEmperor
3434
SPELL_AVATAROFFLAME = 15636
3535
};
3636

37-
struct MANGOS_DLL_DECL boss_emperor_dagran_thaurissanAI : public ScriptedAI
37+
struct boss_emperor_dagran_thaurissanAI : public ScriptedAI
3838
{
3939
boss_emperor_dagran_thaurissanAI(Creature* pCreature) : ScriptedAI(pCreature)
4040
{
@@ -140,7 +140,7 @@ enum ePrincess
140140
SPELL_OPEN_PORTAL = 13912
141141
};
142142

143-
struct MANGOS_DLL_DECL boss_moira_bronzebeardAI : public ScriptedAI
143+
struct boss_moira_bronzebeardAI : public ScriptedAI
144144
{
145145
boss_moira_bronzebeardAI(Creature* pCreature) : ScriptedAI(pCreature)
146146
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/boss_general_angerforge.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ enum
3333
NPC_ANVILRAGE_MEDIC = 8894,
3434
};
3535

36-
struct MANGOS_DLL_DECL boss_general_angerforgeAI : public ScriptedAI
36+
struct boss_general_angerforgeAI : public ScriptedAI
3737
{
3838
boss_general_angerforgeAI(Creature* pCreature) : ScriptedAI(pCreature) { Reset(); }
3939

scripts/eastern_kingdoms/blackrock_mountain/blackrock_depths/boss_high_interrogator_gerstahn.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ enum
3131
SPELL_SHADOWSHIELD = 12040
3232
};
3333

34-
struct MANGOS_DLL_DECL boss_high_interrogator_gerstahnAI : public ScriptedAI
34+
struct boss_high_interrogator_gerstahnAI : public ScriptedAI
3535
{
3636
boss_high_interrogator_gerstahnAI(Creature* pCreature) : ScriptedAI(pCreature) {Reset();}
3737

scripts/eastern_kingdoms/blackrock_mountain/blackrock_spire/blackrock_spire.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ static const uint32 aStadiumEventNpcs[MAX_STADIUM_WAVES][5] =
9494
{NPC_CHROMATIC_WHELP, NPC_CHROMATIC_WHELP, NPC_CHROMATIC_DRAGON, NPC_CHROMATIC_DRAGON, NPC_BLACKHAND_HANDLER},
9595
};
9696

97-
class MANGOS_DLL_DECL instance_blackrock_spire : public ScriptedInstance, private DialogueHelper
97+
class instance_blackrock_spire : public ScriptedInstance, private DialogueHelper
9898
{
9999
public:
100100
instance_blackrock_spire(Map* pMap);

scripts/eastern_kingdoms/blackrock_mountain/blackrock_spire/boss_gyth.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ enum
3838
SPELL_KNOCK_AWAY = 10101,
3939
};
4040

41-
struct MANGOS_DLL_DECL boss_gythAI : public ScriptedAI
41+
struct boss_gythAI : public ScriptedAI
4242
{
4343
boss_gythAI(Creature* pCreature) : ScriptedAI(pCreature)
4444
{

scripts/eastern_kingdoms/blackrock_mountain/blackrock_spire/boss_overlord_wyrmthalak.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const float afLocations[2][4] =
4040
{ -49.875881f, -511.896942f, 88.195160f, 4.613114f}
4141
};
4242

43-
struct MANGOS_DLL_DECL boss_overlordwyrmthalakAI : public ScriptedAI
43+
struct boss_overlordwyrmthalakAI : public ScriptedAI
4444
{
4545
boss_overlordwyrmthalakAI(Creature* pCreature) : ScriptedAI(pCreature) {Reset();}
4646

scripts/eastern_kingdoms/blackrock_mountain/blackrock_spire/boss_pyroguard_emberseer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ enum
5050
SPELL_PYROBLAST = 20228 // guesswork, but best fitting in spells-area, was 17274 (has mana cost)
5151
};
5252

53-
struct MANGOS_DLL_DECL boss_pyroguard_emberseerAI : public ScriptedAI
53+
struct boss_pyroguard_emberseerAI : public ScriptedAI
5454
{
5555
boss_pyroguard_emberseerAI(Creature* pCreature) : ScriptedAI(pCreature)
5656
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/blackwing_lair.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static const float aNefariusSpawnLoc[4] = { -7466.16f, -1040.80f, 412.053f, 2.14
6363

6464
static const uint32 aRazorgoreSpawns[MAX_EGGS_DEFENDERS] = {NPC_BLACKWING_LEGIONNAIRE, NPC_BLACKWING_MAGE, NPC_DRAGONSPAWN, NPC_DRAGONSPAWN};
6565

66-
class MANGOS_DLL_DECL instance_blackwing_lair : public ScriptedInstance
66+
class instance_blackwing_lair : public ScriptedInstance
6767
{
6868
public:
6969
instance_blackwing_lair(Map* pMap);

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_broodlord_lashlayer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ enum
3535
SPELL_KNOCK_AWAY = 25778
3636
};
3737

38-
struct MANGOS_DLL_DECL boss_broodlordAI : public ScriptedAI
38+
struct boss_broodlordAI : public ScriptedAI
3939
{
4040
boss_broodlordAI(Creature* pCreature) : ScriptedAI(pCreature)
4141
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_chromaggus.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ enum
6161

6262
static const uint32 aPossibleBreaths[MAX_BREATHS] = {SPELL_INCINERATE, SPELL_TIME_LAPSE, SPELL_CORROSIVE_ACID, SPELL_IGNITE_FLESH, SPELL_FROST_BURN};
6363

64-
struct MANGOS_DLL_DECL boss_chromaggusAI : public ScriptedAI
64+
struct boss_chromaggusAI : public ScriptedAI
6565
{
6666
boss_chromaggusAI(Creature* pCreature) : ScriptedAI(pCreature)
6767
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_ebonroc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ enum
3232
SPELL_THRASH = 3391, // TODO missing
3333
};
3434

35-
struct MANGOS_DLL_DECL boss_ebonrocAI : public ScriptedAI
35+
struct boss_ebonrocAI : public ScriptedAI
3636
{
3737
boss_ebonrocAI(Creature* pCreature) : ScriptedAI(pCreature)
3838
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_firemaw.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ enum
3232
SPELL_THRASH = 3391, // TODO, missing
3333
};
3434

35-
struct MANGOS_DLL_DECL boss_firemawAI : public ScriptedAI
35+
struct boss_firemawAI : public ScriptedAI
3636
{
3737
boss_firemawAI(Creature* pCreature) : ScriptedAI(pCreature)
3838
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_flamegor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ enum
3434
SPELL_THRASH = 3391, // TODO missing
3535
};
3636

37-
struct MANGOS_DLL_DECL boss_flamegorAI : public ScriptedAI
37+
struct boss_flamegorAI : public ScriptedAI
3838
{
3939
boss_flamegorAI(Creature* pCreature) : ScriptedAI(pCreature)
4040
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_nefarian.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ enum
6363
SPELL_ROGUE = 23414, // Paralise
6464
};
6565

66-
struct MANGOS_DLL_DECL boss_nefarianAI : public ScriptedAI
66+
struct boss_nefarianAI : public ScriptedAI
6767
{
6868
boss_nefarianAI(Creature* pCreature) : ScriptedAI(pCreature)
6969
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_razorgore.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ enum
4141
SPELL_CONFLAGRATION = 23023,
4242
};
4343

44-
struct MANGOS_DLL_DECL boss_razorgoreAI : public ScriptedAI
44+
struct boss_razorgoreAI : public ScriptedAI
4545
{
4646
boss_razorgoreAI(Creature* pCreature) : ScriptedAI(pCreature)
4747
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_vaelastrasz.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ enum
5656
AREATRIGGER_VAEL_INTRO = 3626,
5757
};
5858

59-
struct MANGOS_DLL_DECL boss_vaelastraszAI : public ScriptedAI
59+
struct boss_vaelastraszAI : public ScriptedAI
6060
{
6161
boss_vaelastraszAI(Creature* pCreature) : ScriptedAI(pCreature)
6262
{

scripts/eastern_kingdoms/blackrock_mountain/blackwing_lair/boss_victor_nefarius.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static const uint32 aPossibleDrake[MAX_DRAKES] = {NPC_BRONZE_DRAKANOID, NPC_BLUE
9696

9797
// Dev note: Lord Victor Nefarius should despawn completely, then ~5 seconds later Nefarian should appear.
9898

99-
struct MANGOS_DLL_DECL boss_victor_nefariusAI : public ScriptedAI, private DialogueHelper
99+
struct boss_victor_nefariusAI : public ScriptedAI, private DialogueHelper
100100
{
101101
boss_victor_nefariusAI(Creature* pCreature) : ScriptedAI(pCreature),
102102
DialogueHelper(aIntroDialogue)

scripts/eastern_kingdoms/blackrock_mountain/molten_core/boss_baron_geddon.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ enum
3434
SPELL_ARMAGEDDON = 20478
3535
};
3636

37-
struct MANGOS_DLL_DECL boss_baron_geddonAI : public ScriptedAI
37+
struct boss_baron_geddonAI : public ScriptedAI
3838
{
3939
boss_baron_geddonAI(Creature* pCreature) : ScriptedAI(pCreature)
4040
{

0 commit comments

Comments
 (0)