aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp b/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp
index 63a7d69baa8..a615f7437c5 100644
--- a/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp
+++ b/src/server/scripts/Northrend/Naxxramas/boss_loatheb.cpp
@@ -92,35 +92,7 @@ public:
};
-enum SporeSpells
-{
- SPELL_FUNGAL_CREEP = 29232
-};
-
-class mob_loatheb_spore : public CreatureScript
-{
-public:
- mob_loatheb_spore() : CreatureScript("mob_loatheb_spore") { }
-
- CreatureAI* GetAI(Creature* pCreature) const
- {
- return new mob_loatheb_sporeAI (pCreature);
- }
-
- struct mob_loatheb_sporeAI : public ScriptedAI
- {
- mob_loatheb_sporeAI(Creature *c) : ScriptedAI(c) {}
-
- void JustDied(Unit* killer)
- {
- DoCast(killer, SPELL_FUNGAL_CREEP);
- }
- };
-
-};
-
void AddSC_boss_loatheb()
{
new boss_loatheb();
- new mob_loatheb_spore();
}