From 1a7b191da2b0656941bcf142c4e1e980682ed9b3 Mon Sep 17 00:00:00 2001 From: Vox Date: Fri, 24 Jul 2026 05:27:21 -0400 Subject: [PATCH] fix(db/Creature): Dead Mage Hunter Improvements (#26760) --- .../pending_db_world/rev_1784841270168338100.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1784841270168338100.sql diff --git a/data/sql/updates/pending_db_world/rev_1784841270168338100.sql b/data/sql/updates/pending_db_world/rev_1784841270168338100.sql new file mode 100644 index 000000000..9d0d58da7 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1784841270168338100.sql @@ -0,0 +1,13 @@ +-- -------------------------------------------------------------------------------------------- +-- Dragonblight (Northrend, map 571) +-- Dead Mage Hunter (26477): permanent, randomized corpse appearance +-- ------------------------------------------- +-- Populate spell Serverside - Dead Mage Hunter Transform (47090) with transform effect to Dead Mage Hunter Transform (26476) +UPDATE `spell_dbc` SET `Effect_1` = 6, `EffectAura_1` = 56, `ImplicitTargetA_1` = 1, `EffectMiscValue_1` = 26476 WHERE `ID` = 47090; +-- Dead Mage Hunter (26477) - apply sniffed displayIDs +DELETE FROM `creature_template_model` WHERE `CreatureID` = 26477; +INSERT INTO `creature_template_model` (`CreatureID`, `Idx`, `CreatureDisplayID`, `DisplayScale`, `Probability`, `VerifiedBuild`) VALUES +(26477, 0, 16888, 1, 0, 51831), +(26477, 1, 11686, 1, 1, 51831); +-- Dead Mage Hunter (26477) - apply blanket transform spell as aura +UPDATE `creature_template_addon` SET `auras` = '47090' WHERE (`entry` = 26477);