mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-14 07:53:44 +00:00
21
data/sql/updates/db_world/2024_05_25_00.sql
Normal file
21
data/sql/updates/db_world/2024_05_25_00.sql
Normal file
@@ -0,0 +1,21 @@
|
||||
-- DB update 2024_05_21_00 -> 2024_05_25_00
|
||||
--
|
||||
-- Remove encounter auras minus glow aura from Keepers, add glow aura to Gossip Keepers
|
||||
UPDATE `creature_template_addon` SET `auras` = '62647' WHERE `entry` IN (33410,33411,33412,33413,33213,33241,33242,33244);
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 64170;
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (64170, 'spell_keeper_freya_summon_sanity_well');
|
||||
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` IN (62650,62670,62671,62702);
|
||||
DELETE FROM `spell_script_names` WHERE `spell_id` = 64174 AND `ScriptName` = 'spell_gen_area_aura_select_players';
|
||||
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES
|
||||
(62650, 'spell_gen_area_aura_select_players_and_caster'),
|
||||
(62670, 'spell_gen_area_aura_select_players_and_caster'),
|
||||
(62671, 'spell_gen_area_aura_select_players_and_caster'),
|
||||
(62702, 'spell_gen_area_aura_select_players_and_caster'),
|
||||
(64174, 'spell_gen_area_aura_select_players');
|
||||
|
||||
-- Keeper: handle spawns with script
|
||||
DELETE FROM `creature` WHERE `id1` IN (33213,33241,33242,33244);
|
||||
-- Keeper: remove not selectable, immune to pc, immune to player; civilian
|
||||
UPDATE `creature_template` SET `unit_flags` = `unit_flags` & ~(256 | 512 | 33554432), `flags_extra` = `flags_extra` & ~2 WHERE `entry` IN (33410,33411,33412,33413);
|
||||
Reference in New Issue
Block a user