fix(Core/Spells): Slow Fall procs helpful trinkets#25631
Draft
blinkysc wants to merge 1 commit intoazerothcore:masterfrom
Draft
fix(Core/Spells): Slow Fall procs helpful trinkets#25631blinkysc wants to merge 1 commit intoazerothcore:masterfrom
blinkysc wants to merge 1 commit intoazerothcore:masterfrom
Conversation
Patch 3.3.0 explicitly enabled Slow Fall to activate trinkets that can trigger from casting a helpful spell, but the AC proc system classifies it as PROC_SPELL_TYPE_NO_DMG_HEAL because it deals no damage or heal. After the prior chance-on-spell trinket SpellTypeMask tightening (chromiecraft/chromiecraft#9399), the NO_DMG_HEAL classification stops matching the trinkets' SpellTypeMask = DAMAGE | HEAL filter. Special-case spell 130 to report as PROC_SPELL_TYPE_HEAL so the chance-on-helpful-spell trinkets accept it again, restoring retail 3.3.0 behavior. No other helpful self-cast is affected. Source: https://www.bluetracker.gg/wow/topic/eu-en/11824414100-33-patch-notes/
Contributor
Author
|
So I had as HEAL, but really there is many that can mean "helpful" so this is kind of tough... |
Contributor
Author
|
This needs deeper research likely... Dang blue post just so vague |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes Proposed:
This PR proposes changes to:
Patch 3.3.0 explicitly enabled Slow Fall to activate trinkets that can trigger from casting a helpful spell. The AC proc system classifies any spell with no damage and no heal as
PROC_SPELL_TYPE_NO_DMG_HEAL, which after the tightening in #25630 (SpellTypeMask = DAMAGE | HEALon chance-on-helpful-spell trinkets) stops matching those trinkets. Slow Fall (spell 130) should still match — it's the one helpful self-cast retail explicitly opted into the helpful-spell proc category in 3.3.0.The fix is localised to
Unit::ProcSkillsAndAuraswherespellTypeMaskis computed: when a spell with no damage/heal would otherwise be reported asNO_DMG_HEAL, special-case spell 130 and reportHEALinstead. The trinket filter then accepts it (0x2 & 0x3 == 0x2).Scope:
NO_DMG_HEALand stays blocked.MASK_ALLupstream and were never blocked for Slow Fall by the prior PR.AI-assisted Pull Requests
Tooling: Claude Code with azerothMCP.
Issues Addressed:
SOURCE:
The changes have been validated through:
Patch 3.3.0 notes (Dec 8 2009): "Slow Fall: This spell can now activate trinkets that can trigger from casting a helpful spell."
Tests Performed:
This PR has been:
How to Test the Changes:
/cast Slow Fallor.cast 130) on yourself or a raid member ~10 times.NO_DMG_HEAL..cast 58660) — the trinket should still NOT fire (only spell 130 is special-cased).Known Issues and TODO List: