mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 20:56:23 +00:00
fix(DB/Creature) Fel Crystals no longer follow players. (#21227)
This commit is contained in:
7
data/sql/updates/pending_db_world/Fel_Crystals.sql
Normal file
7
data/sql/updates/pending_db_world/Fel_Crystals.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
-- Change creature template flags (before: IMMUNE_TO_PC, IMMUNE_TO_NPC, NOT_SELECTABLE. now: STUNNED, NOT_SELECTABLE).
|
||||
UPDATE `creature_template` SET `unit_flags`=`unit_flags`& ~33555200 WHERE (`entry` = 24722);
|
||||
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|33816576 WHERE (`entry` = 24722);
|
||||
|
||||
-- Add Rooted and Flight (Sniffed Flags).
|
||||
UPDATE `creature_template_movement` SET `Flight` = 1, `Rooted` = 1 WHERE (`CreatureId` = 24722);
|
||||
Reference in New Issue
Block a user