fix(DB/Creature) Remove double Nerub'ar Victims and set a Crystalline Tender movement type to 0. (#21153)

This commit is contained in:
Rocco Silipo 2025-01-14 11:23:32 +01:00 committed by GitHub
parent f4534e256a
commit b1d72f14a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,6 @@
-- Delete Double Nerub'ar Victims
DELETE FROM `creature` WHERE (`id1` = 25284) AND (`guid` IN (143230, 143231, 143232, 143263, 143264, 143268, 143269, 143271, 143272, 143273));
-- Set MT to 0 for a Crystalline Tender inside The Nexus (dungeon).
UPDATE `creature` SET `MovementType` = 0 WHERE (`id1` = 28231) AND (`guid` IN (126441));