-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(Scripts/BT) Fix Gurtogg will not use acidic wound in phase 2 #21253
base: master
Are you sure you want to change the base?
Conversation
removed redundant RemoveAura
Ive explained the issue in detail here: #21208 (comment) I am not certain how giving him the aura again would be able to address this issue |
Honestly not sure why that's the case as well, I took this from the original script and applied it to when fel rage happens with 28s timer (based on fel rage instead of checking if any player has it). I have tested and works but I'll keep looking for a more appropriately named function |
Updated old and new with DoCastVictim()
So apparently DoCastVictim() works the same here ¯\(ツ)/¯, I changed the old line of code as well. Also tested again |
Effect 0: Id 6 (SPELL_EFFECT_APPLY_AURA) 40484 has TARGET_UNIT_CASTER as target so it has only one valid target, himself. So DoCastSelf() is the appropriate choice here |
Back to DoCastSelf()
DoCastSelf() back |
Gurtogg still uses acidic wound in phase 2. |
Tried another 2 times, but I don't ever see Gurtogg apply acidic wound while fel rage. Do you see the same behavior before or any difference? |
Do you have uncommited changes by any chance? |
tested again AzerothCore rev. a13c2ff+ 2025-01-23 17:30:31 +0000 (master branch) (Win64, RelWithDebInfo, Static) No modules are enabled |
You'll have to checkout the PR before testing, unless of course you just copy pasta? |
Remove the aura at start of p2 |
Acidic Wound shouldn't be removed from players if I'm not mistaken just that new applications should not be applied? |
yes... I mean.. from the boss.. |
usually do it manually but tried again AzerothCore rev. dffb89b 2025-01-23 20:57:24 -0600 (pr-21253 branch) (Win64, RelWithDebInfo, Static) Acidic.mp4 |
Boss never has the Aura, that was the confusion with DoCastSelf() even though its an offensive ability (from Gurtogg's perspective) |
Oh I see, maybe weird timing issue. Maybe what I can do is something like 100-300ms before fel rage he stops acidic wound and maybe 100ms after? |
Also @amed80 no more is applied after that initial one right? During Fel Rage that is |
This problem is quite intriguing. I haven't had time to fix my commit, but I believe the best way to fix this problem is to create phases on the boss. I'll be looking into this tomorrow, when I'm less busy at work. |
I've tried and tried but from what I see acid wound isn't happening to players in Phase 2 with latest commit. The Aura is removed on Gurtogg during Phase 2 and he waits 28s to reapply. What you think @Nyeriah ? |
RemoveAurasDueToSpell
@amed80 if you woundn't mind trying again when you have a chance |
Yes , tested 3 Fel Rage phases. |
Changes Proposed:
This PR proposes changes to:
Issues Addressed:
SOURCE:
The changes have been validated through:
Tests Performed:
This PR has been:
How to Test the Changes:
Known Issues and TODO List:
How to Test AzerothCore PRs
When a PR is ready to be tested, it will be marked as [WAITING TO BE TESTED].
You can help by testing PRs and writing your feedback here on the PR's page on GitHub. Follow the instructions here:
http://www.azerothcore.org/wiki/How-to-test-a-PR
REMEMBER: when testing a PR that changes something generic (i.e. a part of code that handles more than one specific thing), the tester should not only check that the PR does its job (e.g. fixing spell XXX) but especially check that the PR does not cause any regression (i.e. introducing new bugs).
For example: if a PR fixes spell X by changing a part of code that handles spells X, Y, and Z, we should not only test X, but we should test Y and Z as well.