Skip to content

Commit

Permalink
Scripts/Zangarmarsh: Removes empty gossip_text that resulted in NPCs …
Browse files Browse the repository at this point in the history
…saying blank text to players after buffing them

Closes #12697
Closes #16300
  • Loading branch information
huifsa authored and Carbenium committed Jan 19, 2016
1 parent ac727ab commit ccf3ed4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions sql/updates/world/2016_01_19_05_world.sql
@@ -0,0 +1 @@
DELETE FROM `creature_text` WHERE `entry` IN (17900,17901) AND `BroadcastTextId`=8329;
4 changes: 0 additions & 4 deletions src/server/scripts/Outland/zone_zangarmarsh.cpp
Expand Up @@ -48,8 +48,6 @@ EndContentData */

enum AshyenAndKeleth
{
GOSSIP_REWARD_BLESS = 0,

NPC_ASHYEN = 17900,
NPC_KELETH = 17901,

Expand Down Expand Up @@ -117,7 +115,6 @@ class npcs_ashyen_and_keleth : public CreatureScript
if (spell)
{
creature->CastSpell(player, spell, true);
creature->AI()->Talk(GOSSIP_REWARD_BLESS);
}
}

Expand Down Expand Up @@ -145,7 +142,6 @@ class npcs_ashyen_and_keleth : public CreatureScript
if (spell)
{
creature->CastSpell(player, spell, true);
creature->AI()->Talk(GOSSIP_REWARD_BLESS);
}
}
player->CLOSE_GOSSIP_MENU();
Expand Down

1 comment on commit ccf3ed4

@Carbenium
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Closes #16297 instead of #12697

Please sign in to comment.