diff options
author | Machiavelli <none@none> | 2009-08-17 02:03:23 +0200 |
---|---|---|
committer | Machiavelli <none@none> | 2009-08-17 02:03:23 +0200 |
commit | 82c233de58978dae6ded5eca36ff6750845c5b61 (patch) | |
tree | e7c1bc61454c1c8f186bf236e2d67f68f40c6d07 | |
parent | 6f889c690b222528444971f4fa5a2c6662dae875 (diff) |
*Send correct gossip icons for unlearn talent, unlearn pet talent and purchase dual talent. Dual talent still needs some changes to gossip to make blizzlike.
--HG--
branch : trunk
-rw-r--r-- | sql/FULL/world_script_texts.sql | 2 | ||||
-rw-r--r-- | sql/updates/5117_world_npc_option.sql | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sql/FULL/world_script_texts.sql b/sql/FULL/world_script_texts.sql index 3c0ef426d4e..426d3f772fc 100644 --- a/sql/FULL/world_script_texts.sql +++ b/sql/FULL/world_script_texts.sql @@ -2031,4 +2031,4 @@ INSERT INTO `npc_text` (`ID`, `text0_0`, `text0_1`, `lang0`, `prob0`, `em0_0`, ` -- Dual Spec `npc_option` change UPDATE `npc_option` SET `id`=52,`action`=19 WHERE `id`=51 AND `action`=18 AND `option_text`='UNIT_NPC_FLAG_OUTDOORPVP'; DELETE FROM `npc_option` WHERE `id`=51 AND `action`=16 AND `option_text`='Purchase a Dual Talent Specialization.'; -INSERT INTO `npc_option` (`id`, `gossip_id`, `npcflag`, `icon`, `action`, `box_money`, `coded`, `option_text`, `box_text`) values('51','0','16','2','18','10000000','0','Purchase a Dual Talent Specialization.','Are you sure you wish to purchase a Dual Talent Specialization?'); +INSERT INTO `npc_option` (`id`, `gossip_id`, `npcflag`, `icon`, `action`, `box_money`, `coded`, `option_text`, `box_text`) values('51','0','16','0','18','10000000','0','Purchase a Dual Talent Specialization.','Are you sure you wish to purchase a Dual Talent Specialization?'); diff --git a/sql/updates/5117_world_npc_option.sql b/sql/updates/5117_world_npc_option.sql new file mode 100644 index 00000000000..560010862e7 --- /dev/null +++ b/sql/updates/5117_world_npc_option.sql @@ -0,0 +1 @@ +UPDATE `npc_option` SET `icon` = '0' WHERE `id` IN('49','50','51'); |