diff options
author | Nick <Exodius@users.noreply.github.com> | 2015-04-06 21:08:15 +0200 |
---|---|---|
committer | DDuarte <dnpd.dd@gmail.com> | 2015-04-14 01:02:04 +0100 |
commit | 108930611867865d72b4f9112d8538787051e2d0 (patch) | |
tree | 41df284e600dd5e39eef4f50fd448d7b764f1cb2 /src | |
parent | 80c3f3071e1a51319897bd9751a0549cbdc22fa8 (diff) |
Core/Scripts: Remove The Thunderspike script
As explained by @Killyana in https://github.com/TrinityCore/TrinityCore/issues/4458#issuecomment-90061073
(cherry picked from commit 77eb89157b85ff79d049b77f5c8bc35119c6ee41)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Outland/zone_blades_edge_mountains.cpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp index 0fa5b44e09b..9cbd26a35e5 100644 --- a/src/server/scripts/Outland/zone_blades_edge_mountains.cpp +++ b/src/server/scripts/Outland/zone_blades_edge_mountains.cpp @@ -29,7 +29,6 @@ npc_bloodmaul_brute npc_nether_drake npc_daranelle go_legion_obelisk -go_thunderspike EndContentData */ #include "ScriptMgr.h" @@ -507,31 +506,6 @@ public: } }; -/*###### -## go_thunderspike -######*/ - -enum TheThunderspike -{ - NPC_GOR_GRIMGUT = 21319, - QUEST_THUNDERSPIKE = 10526, -}; - -class go_thunderspike : public GameObjectScript -{ - public: - go_thunderspike() : GameObjectScript("go_thunderspike") { } - - bool OnGossipHello(Player* player, GameObject* go) override - { - if (player->GetQuestStatus(QUEST_THUNDERSPIKE) == QUEST_STATUS_INCOMPLETE && !go->FindNearestCreature(NPC_GOR_GRIMGUT, 25.0f, true)) - if (Creature* gorGrimgut = go->SummonCreature(NPC_GOR_GRIMGUT, -2413.4f, 6914.48f, 25.01f, 3.67f, TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 300000)) - gorGrimgut->AI()->AttackStart(player); - - return true; - } -}; - enum SimonGame { NPC_SIMON_BUNNY = 22923, @@ -1224,7 +1198,6 @@ void AddSC_blades_edge_mountains() new npc_nether_drake(); new npc_daranelle(); new go_legion_obelisk(); - new go_thunderspike(); new npc_simon_bunny(); new go_simon_cluster(); new go_apexis_relic(); |