diff options
-rw-r--r-- | sql/base/world_database.sql | 3 | ||||
-rw-r--r-- | sql/updates/world/2011_05_12_10_world_spell_bonus_data.sql | 2 |
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; |