From b6328fa9bb3275873ae6f831ac9cf58812477865 Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Sat, 4 Jul 2026 15:24:42 -0300 Subject: [PATCH] fix(DB/Spells): Honor Among Thieves proc must not engage the rogue (#26462) Co-authored-by: Claude Fable 5 --- .../sql/updates/pending_db_world/rev_1783178553569042800.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1783178553569042800.sql diff --git a/data/sql/updates/pending_db_world/rev_1783178553569042800.sql b/data/sql/updates/pending_db_world/rev_1783178553569042800.sql new file mode 100644 index 0000000000..3740218756 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1783178553569042800.sql @@ -0,0 +1,5 @@ +-- Honor Among Thieves triggered combo point (51699) is beneficial for the rogue: +-- mark it positive so it never pulls the rogue into combat with the targeted enemy +-- (SPELL_ATTR0_CU_POSITIVE_EFF0 | SPELL_ATTR0_CU_POSITIVE_EFF1) +DELETE FROM `spell_custom_attr` WHERE `spell_id` = 51699; +INSERT INTO `spell_custom_attr` (`spell_id`, `attributes`) VALUES (51699, 0x6000000);