diff options
| author | offl <11556157+offl@users.noreply.github.com> | 2021-09-27 00:41:25 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-27 00:41:25 +0300 |
| commit | 5f71c40b969c07f950e3dceb99037c7685512e71 (patch) | |
| tree | f00636ce6dc76e151bbe8e1b16f9b445f67a4dd0 /sql | |
| parent | 9062141cd4dc899d18967456e5a794200009671b (diff) | |
Scripts/Spells: Mount check aura for Gryphon Hatchling & Wind Rider Cub (#26897)
Closes #26600
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/3.3.5/2021_09_26_03_world.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2021_09_26_03_world.sql b/sql/updates/world/3.3.5/2021_09_26_03_world.sql new file mode 100644 index 00000000000..9be7553cc9d --- /dev/null +++ b/sql/updates/world/3.3.5/2021_09_26_03_world.sql @@ -0,0 +1,10 @@ +-- +UPDATE `creature_template` SET `unit_flags` = 768, `flags_extra` = `flags_extra`|512 WHERE `entry` IN (36908,36909); +DELETE FROM `creature_template_addon` WHERE `entry` IN (36908,36909); +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(36908,0,0,0,1,0,0,'69641'), +(36909,0,0,0,1,0,0,'69641'); + +DELETE FROM `spell_script_names` WHERE `spell_id` = 69641 AND `ScriptName` = 'spell_gen_gryphon_wyvern_mount_check'; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(69641,'spell_gen_gryphon_wyvern_mount_check'); |
