diff options
author | Pitcrawler <pitcrawler@server.fake> | 2013-03-17 13:59:01 +0100 |
---|---|---|
committer | Pitcrawler <pitcrawler@server.fake> | 2013-03-17 13:59:01 +0100 |
commit | 7aa23809138c4b7acf08d08eeebf9a330a66844e (patch) | |
tree | 4eb9fad7f6571a9e8b917af69196ccf6a9b0302d /src | |
parent | fab18f67c8f47d90c2e32c05aff04b358d0abba8 (diff) |
DB/Quests: Fix Valkyrion Must Burn, closes #2595
Replace core script with SAI
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/World/npcs_special.cpp | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/server/scripts/World/npcs_special.cpp b/src/server/scripts/World/npcs_special.cpp index 3ddb42532b8..12796d5f88e 100644 --- a/src/server/scripts/World/npcs_special.cpp +++ b/src/server/scripts/World/npcs_special.cpp @@ -2951,31 +2951,6 @@ public: }; }; -/*###### -## npc_generic_harpoon_cannon -######*/ - -class npc_generic_harpoon_cannon : public CreatureScript -{ -public: - npc_generic_harpoon_cannon() : CreatureScript("npc_generic_harpoon_cannon") { } - - struct npc_generic_harpoon_cannonAI : public ScriptedAI - { - npc_generic_harpoon_cannonAI(Creature* creature) : ScriptedAI(creature) {} - - void Reset() - { - me->SetUnitMovementFlags(MOVEMENTFLAG_ROOT); - } - }; - - CreatureAI* GetAI(Creature* creature) const - { - return new npc_generic_harpoon_cannonAI(creature); - } -}; - void AddSC_npcs_special() { new npc_air_force_bots(); @@ -3007,5 +2982,4 @@ void AddSC_npcs_special() new npc_earth_elemental(); new npc_firework(); new npc_spring_rabbit(); - new npc_generic_harpoon_cannon(); } |