aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorXanvial <xanvial@gmail.com>2013-08-16 00:04:52 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2013-08-16 00:04:52 +0200
commit01178f595809dc6f7d043e6cc5c7e7975c466e09 (patch)
tree665e41ff8fcc98160cb1b88acf3ae24f4f8fa4c3 /sql/updates
parent443940c08400ec55d067b305c7353ebb082ef277 (diff)
Core/Spells: Fix paladin talent "Grand Crusader"
Closes #9072 Signed-off-by: Vincent-Michael <Vincent_Michael@gmx.de>
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/world/2013_08_15_00_world_spell_misc_434.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2013_08_15_00_world_spell_misc_434.sql b/sql/updates/world/2013_08_15_00_world_spell_misc_434.sql
new file mode 100644
index 00000000000..8ad29e7ec3d
--- /dev/null
+++ b/sql/updates/world/2013_08_15_00_world_spell_misc_434.sql
@@ -0,0 +1,9 @@
+-- Grand Crusader
+DELETE FROM `spell_script_names` WHERE `spell_id`=-75806;
+INSERT INTO `spell_script_names`(`spell_id`, `ScriptName`) VALUES
+(-75806,'spell_pal_grand_crusader');
+
+-- Grand Crusader can only be activated by Crusader Strike or Hammer of the Righteous
+DELETE FROM `spell_proc_event` WHERE `entry`=-75806;
+INSERT INTO `spell_proc_event` (`entry`, `SchoolMask`, `SpellFamilyName`, `SpellFamilyMask0`, `SpellFamilyMask1`, `SpellFamilyMask2`, `procFlags`, `procEx`, `ppmRate`, `CustomChance`, `Cooldown`) VALUES
+(-75806, 0, 10, 0, 0x48000, 0, 0, 0, 0, 0, 0);