From e8ec77dca750292c4a5dfd2663eeac2ecfdf2e98 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Sat, 15 Nov 2025 18:17:29 +0100 Subject: [PATCH] fix (DB/Creature): Set Surveyor Orlond flags. (#23714) --- data/sql/updates/pending_db_world/Orlond.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/sql/updates/pending_db_world/Orlond.sql diff --git a/data/sql/updates/pending_db_world/Orlond.sql b/data/sql/updates/pending_db_world/Orlond.sql new file mode 100644 index 000000000..bb46f5b22 --- /dev/null +++ b/data/sql/updates/pending_db_world/Orlond.sql @@ -0,0 +1,13 @@ + +-- Add Immune To PC, Immune To Npc, Stunned, Prevent Emotes, Feign Death and remove All Dynamic Flags (Sniffed) +UPDATE `creature_template` SET `unit_flags` = `unit_flags` |256|512|262144|536870912, `unit_flags2` = `unit_flags2` |1, `dynamicflags` = 0 WHERE (`entry` = 26514); + +-- Add Aura (Sniffed) +DELETE FROM `creature_template_addon` WHERE (`entry` = 26514); +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(26514, 0, 0, 0, 0, 0, 0, '29266'); + +-- Add Disable Gravity and Rooted (Sniffed) +DELETE FROM `creature_template_movement` WHERE (`CreatureId` = 26514); +INSERT INTO `creature_template_movement` (`CreatureId`, `Ground`, `Swim`, `Flight`, `Rooted`, `Chase`, `Random`, `InteractionPauseTimer`) VALUES +(26514, 0, 0, 1, 1, 0, 0, 0);