diff options
| author | Ramusik <nikson.91@mail.ru> | 2011-07-15 20:04:18 +0700 |
|---|---|---|
| committer | tobmaps <spambot42@yandex.ru> | 2011-07-15 20:04:18 +0700 |
| commit | 37185c77494a7e708c94077e0d2a9a07acc49d51 (patch) | |
| tree | 770bb9a1bd30d7aa56121009fe2d0826b4283f58 | |
| parent | e1c7d95699c823ca380a04965010809ac0a75fd3 (diff) | |
Core/Spells: Fix Divine Hymn spell power coefficients
Closes #438
| -rw-r--r-- | sql/base/world_database.sql | 1 | ||||
| -rw-r--r-- | sql/updates/world/2011_07_15_02_world_spell_bonus_data.sql | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index db8f4b0d0c7..56433bb2bfd 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -16966,6 +16966,7 @@ INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`a (34861, 0.402, -1, -1, -1, 'Priest - Circle of Healing'), (19236, 0.8068, -1, -1, -1, 'Priest - Desperate Prayer'), (2944, -1, 0.1849, -1, -1, 'Priest - Devouring Plague'), +(64844, 0.5483, -1, -1, -1, 'Priest - Divine Hymn'), (63544, 0, -1, -1, -1, 'Priest - Empowered Renew'), (2061, 0.8068, -1, -1, -1, 'Priest - Flash Heal'), (2060, 1.6135, -1, -1, -1, 'Priest - Greater Heal'), diff --git a/sql/updates/world/2011_07_15_02_world_spell_bonus_data.sql b/sql/updates/world/2011_07_15_02_world_spell_bonus_data.sql new file mode 100644 index 00000000000..004f3597df2 --- /dev/null +++ b/sql/updates/world/2011_07_15_02_world_spell_bonus_data.sql @@ -0,0 +1,3 @@ +DELETE FROM `spell_bonus_data` WHERE `entry` = 64844; +INSERT INTO `spell_bonus_data` VALUES +(64844, 0.5483, -1, -1, -1, 'Priest - Divine Hymn'); |
