aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorTeleqraph <nyrdeveloper@gmail.com>2022-02-06 21:36:50 +0100
committerGitHub <noreply@github.com>2022-02-06 21:36:50 +0100
commitf3e908dc997833d3e2c5297471210bf075121f90 (patch)
tree6bfcb77a083aef5666ca13fe9b0f2e31164c6b00 /sql
parent34024edcaa0c509545429f4f40ccfa80221d406f (diff)
Scripts/Spells: Fixed paladin's Light's Hammer (#27693)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/master/2022_02_06_01_world.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_02_06_01_world.sql b/sql/updates/world/master/2022_02_06_01_world.sql
new file mode 100644
index 00000000000..7eb9e8a16f6
--- /dev/null
+++ b/sql/updates/world/master/2022_02_06_01_world.sql
@@ -0,0 +1,10 @@
+DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_pal_light_hammer_periodic';
+INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
+(122773,'spell_pal_light_hammer_init_summon'),
+(114918,'spell_pal_light_hammer_periodic');
+
+UPDATE `creature_template` SET `unit_flags`=0x2000000, `unit_flags2`=0x4008800, `unit_flags3`=0x1 WHERE `entry`=59738;
+
+DELETE FROM `creature_template_movement` WHERE `CreatureId`=59738;
+INSERT INTO `creature_template_movement` (`CreatureId`,`Flight`,`Rooted`) VALUES
+(59738,1,1);