aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobmaps <spambot42@yandex.ru>2011-05-12 18:06:16 +0700
committertobmaps <spambot42@yandex.ru>2011-05-12 18:06:16 +0700
commit15632fc81aeedc6e1714edb2383d55049d6c9089 (patch)
treea495fe9367853ee8590d4642457dcdcb0892db04
parent8001fd0ba7cad6b318f3586894e44ff12e6e2e97 (diff)
Core/Spells: Fix spell power coefficient for Prayer of Healing
-rw-r--r--sql/base/world_database.sql2
-rw-r--r--sql/updates/world/2011_05_12_08_world_bonus_data.sql1
2 files changed, 2 insertions, 1 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index 2f5c0e4d49c..c0928d9346d 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -17017,7 +17017,7 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a
(52999, 0.229, -1, -1, -1, 'Priest - Penance Hurt (Rank 3)'),
(53000, 0.229, -1, -1, -1, 'Priest - Penance Hurt (Rank 4)'),
(17, 0.8068, -1, -1, -1, 'Priest - Power Word: Shield'),
-(596, 0.8068, -1, -1, -1, 'Priest - Prayer of Healing'),
+(596, 0.526, -1, -1, -1, 'Priest - Prayer of Healing'),
(33110, 0.8068, 0, 0, 0, 'Priest - Prayer of Mending Heal Proc'),
(33619, 0, 0, 0, 0, 'Priest - Reflective Shield'),
(139, -1, 0.376, -1, -1, 'Priest - Renew'),
diff --git a/sql/updates/world/2011_05_12_08_world_bonus_data.sql b/sql/updates/world/2011_05_12_08_world_bonus_data.sql
new file mode 100644
index 00000000000..d72932f35b3
--- /dev/null
+++ b/sql/updates/world/2011_05_12_08_world_bonus_data.sql
@@ -0,0 +1 @@
+UPDATE `spell_bonus_data` SET `direct_bonus` = 0.526 WHERE `entry` = 596;