aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamusik <nikson.91@mail.ru>2011-05-12 23:38:32 +0700
committertobmaps <spambot42@yandex.ru>2011-05-12 23:38:32 +0700
commitdb2f769c4927fecd9591ab4f444883e8c986f06e (patch)
treedf037eb85cd4cfd52408a019a2870a59ab0743b5
parentf8c95075dc81a2e793ae17bd10bddb6a7daf5655 (diff)
Core/Spells: Fix attack power coefficient for Blood Boil
-rw-r--r--sql/base/world_database.sql3
-rw-r--r--sql/updates/world/2011_05_12_10_world_spell_bonus_data.sql2
2 files changed, 3 insertions, 2 deletions
diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql
index 23141e3732e..ce95b3bd050 100644
--- a/sql/base/world_database.sql
+++ b/sql/base/world_database.sql
@@ -16862,8 +16862,7 @@ CREATE TABLE `spell_bonus_data` (
LOCK TABLES `spell_bonus_data` WRITE;
/*!40000 ALTER TABLE `spell_bonus_data` DISABLE KEYS */;
INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
-(49941, -1, -1, 0.04, -1, 'Death Knight - Blood Boil'),
-(48721, 0, -1, 0.04, -1, 'Death Knight - Blood Boil'),
+(48721, 0, -1, 0.06, -1, 'Death Knight - Blood Boil'),
(55078, 0, 0, -1, 0.06325, 'Death Knight - Blood Plague'),
(50444, -1, -1, 0.105, -1, 'Death Knight - Corpse Explosion Triggered'),
(52212, 0, -1, 0.0475, -1, 'Death Knight - Death and Decay'),
diff --git a/sql/updates/world/2011_05_12_10_world_spell_bonus_data.sql b/sql/updates/world/2011_05_12_10_world_spell_bonus_data.sql
new file mode 100644
index 00000000000..c9fcade6817
--- /dev/null
+++ b/sql/updates/world/2011_05_12_10_world_spell_bonus_data.sql
@@ -0,0 +1,2 @@
+UPDATE `spell_bonus_data` SET `ap_bonus` = 0.06 WHERE `entry` = 48721;
+DELETE FROM `spell_bonus_data` WHERE `entry` = 49941;