aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorQAston <qaston@gmail.com>2012-06-14 19:25:50 +0200
committerQAston <qaston@gmail.com>2012-06-14 19:25:50 +0200
commitaae45460edf522eb60316ca93a406e41749c5aa8 (patch)
treefe7ed77ab4c9868f3c1ef3fe162066c28c32a9ca /sql
parent968c5b9fd5fe07adda50f420d116564eec5f8d6b (diff)
parent62c64920f17dc08834098c383a8a8ba7044e4c8d (diff)
Merge Pull Request #6744 'EmpoweredRenew'
Core/Spells: Fix Empowered Renew calculation Closes #6744
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/2012_06_14_05_world_spelldifficulty_dbc.sql2
-rw-r--r--sql/updates/world/2012_06_14_07_world_spell_bonus_data.sql3
-rw-r--r--sql/updates/world/2012_06_14_08_world_spell_script_names.sql3
3 files changed, 7 insertions, 1 deletions
diff --git a/sql/updates/world/2012_06_14_05_world_spelldifficulty_dbc.sql b/sql/updates/world/2012_06_14_05_world_spelldifficulty_dbc.sql
index 198a2bf839d..1f218027f91 100644
--- a/sql/updates/world/2012_06_14_05_world_spelldifficulty_dbc.sql
+++ b/sql/updates/world/2012_06_14_05_world_spelldifficulty_dbc.sql
@@ -1,4 +1,4 @@
-SET @DIFF := xxxx; -- set by TDB team
+SET @DIFF := 3268; -- set by TDB team
DELETE FROM `spelldifficulty_dbc` WHERE `id` BETWEEN @DIFF+0 AND @DIFF+2;
INSERT INTO `spelldifficulty_dbc` (`id`,`spellid0`,`spellid1`,`spellid2`,`spellid3`) VALUES
(@DIFF+0,50811,61547,0,0),
diff --git a/sql/updates/world/2012_06_14_07_world_spell_bonus_data.sql b/sql/updates/world/2012_06_14_07_world_spell_bonus_data.sql
new file mode 100644
index 00000000000..aa9c1b732c4
--- /dev/null
+++ b/sql/updates/world/2012_06_14_07_world_spell_bonus_data.sql
@@ -0,0 +1,3 @@
+DELETE FROM `spell_bonus_data` WHERE `entry`=63544;
+INSERT INTO `spell_bonus_data` (`entry`,`direct_bonus`,`dot_bonus`,`ap_bonus`,`ap_dot_bonus`,`comments`) VALUES
+(63544,0,0,0,0,'Priest - Empowered Renew');
diff --git a/sql/updates/world/2012_06_14_08_world_spell_script_names.sql b/sql/updates/world/2012_06_14_08_world_spell_script_names.sql
new file mode 100644
index 00000000000..a9faa529143
--- /dev/null
+++ b/sql/updates/world/2012_06_14_08_world_spell_script_names.sql
@@ -0,0 +1,3 @@
+DELETE FROM `spell_script_names` WHERE `spell_id`=-139;
+INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
+(-139,'spell_priest_renew');