diff options
author | Saben65 <ebecker10@gmail.com> | 2016-01-19 21:17:10 +0100 |
---|---|---|
committer | Carbenium <carbenium@outlook.com> | 2016-01-19 21:17:10 +0100 |
commit | ccf3ed40e2ed5c320fe2f468f5ba0f2bff5e27fa (patch) | |
tree | 3d14097948122c9dc98e5351fc993993c271c581 | |
parent | ac727ab208e592c7a2d01ebe321944402860c3ae (diff) |
Scripts/Zangarmarsh: Removes empty gossip_text that resulted in NPCs saying blank text to players after buffing them
Closes #12697
Closes #16300
-rw-r--r-- | sql/updates/world/2016_01_19_05_world.sql | 1 | ||||
-rw-r--r-- | src/server/scripts/Outland/zone_zangarmarsh.cpp | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/sql/updates/world/2016_01_19_05_world.sql b/sql/updates/world/2016_01_19_05_world.sql new file mode 100644 index 00000000000..5afd9e2b8a5 --- /dev/null +++ b/sql/updates/world/2016_01_19_05_world.sql @@ -0,0 +1 @@ +DELETE FROM `creature_text` WHERE `entry` IN (17900,17901) AND `BroadcastTextId`=8329; diff --git a/src/server/scripts/Outland/zone_zangarmarsh.cpp b/src/server/scripts/Outland/zone_zangarmarsh.cpp index 48bbb7bad4a..6f38cce0e5b 100644 --- a/src/server/scripts/Outland/zone_zangarmarsh.cpp +++ b/src/server/scripts/Outland/zone_zangarmarsh.cpp @@ -48,8 +48,6 @@ EndContentData */ enum AshyenAndKeleth { - GOSSIP_REWARD_BLESS = 0, - NPC_ASHYEN = 17900, NPC_KELETH = 17901, @@ -117,7 +115,6 @@ public: if (spell) { creature->CastSpell(player, spell, true); - creature->AI()->Talk(GOSSIP_REWARD_BLESS); } } @@ -145,7 +142,6 @@ public: if (spell) { creature->CastSpell(player, spell, true); - creature->AI()->Talk(GOSSIP_REWARD_BLESS); } } player->CLOSE_GOSSIP_MENU(); |