aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorRushor <PBienati@web.de>2016-02-11 14:40:18 +0100
committertkrokli <tkrokli@hotmail.com>2016-02-11 14:41:35 +0100
commit259690b3ce0d53cabf7ea60e7e5767014e27a268 (patch)
tree0d2fc550409b893c19bab7f7c0e686a3e79191c8 /sql/updates
parentb4b43d03b3fbff38ebcf84be27388202fc6cb08f (diff)
[3.3.5] Beast Mastery hunter talent Animal Handler
The goal of this PR is to restore the correct AP values for a BM hunter: Animal Handler, Rank 1 - Increases your pet's attack power by 5% and increases the duration of your Master's Call effect by 3 sec. Animal Handler, Rank 2 - Increases your pet's attack power by 10%, and increases the duration of your Master's Call effect by 6 sec. Viewed in talent calculator: http://wotlk.openwow.com/talent#cVbhzTGRb by Rushor, closes #15361
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/world/2016_02_12_13_world_335.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/2016_02_12_13_world_335.sql b/sql/updates/world/2016_02_12_13_world_335.sql
new file mode 100644
index 00000000000..4871f6de86a
--- /dev/null
+++ b/sql/updates/world/2016_02_12_13_world_335.sql
@@ -0,0 +1,5 @@
+-- animal handler, spell ranks
+DELETE FROM `spell_ranks` WHERE `first_spell_id` = 34453;
+INSERT INTO `spell_ranks` (`first_spell_id`,`spell_id`,`rank`) VALUES
+(34453, 34453, 1), -- Animal Handler, Rank 1
+(34453, 34454, 2); -- Animal Handler, Rank 2