fix(DB/Spells): Honor Among Thieves proc must not engage the rogue (#26462)

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Andrew
2026-07-04 15:24:42 -03:00
committed by GitHub
parent b4f2e6f8f7
commit b6328fa9bb
@@ -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);