Skip to content
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

Stacking Moonkin Haste + Swift Retribution #5173

Closed
mweinelt opened this issue Feb 10, 2012 · 6 comments
Closed

Stacking Moonkin Haste + Swift Retribution #5173

mweinelt opened this issue Feb 10, 2012 · 6 comments

Comments

@mweinelt
Copy link
Contributor

You get 3% / 5% from either one and they stack while they shouldn't.

"Percentage Haste Increase (All Types): [Improved Moonkin Aura], [Swift Retribution] "
http://www.wowwiki.com/Buff#Buffs.2C_debuffs.2C_and_raid_stacking_in_WotLK

@Ka0z
Copy link
Contributor

Ka0z commented Feb 11, 2012

I believe this could be easy fixed with a sql sentence.

SET @GROUP_ID:= XXXXXX;
SET @SPELL1:= YYYYYY;
SET @SPELL2:=ZZZZZZ;
DELETE FROM `spell_group` WHERE `id` = @GROUP_ID;
INSERT INTO `spell_group` VALUES
(@GROUP_ID,@SPELL1),
(@GROUP_ID,@SPELL1);

DELETE FROM `spell_group_stack_rules` WHERE `group_id` = @GROUP_ID;
INSERT INTO `spell_group_stack_rules` VALUES
(@GROUP_ID,1);

@mweinelt
Copy link
Contributor Author

imp. Moonkin is 48384, Swift Retribution is 53379

@PKX
Copy link
Contributor

PKX commented Feb 11, 2012

Wont work. Imp. Moonkin aura is 50170, but Swift Retribution doesn't have his own aura.
afaik SR works only on retribution aura; if that's the case, the best we can do is put both 50170 and 7294 in same spell_group, but of course this will cause retri aura and mookin form to overwrite each other.
If SR has been fixed recently, then also this bug must be fixed in the same code/AuraScript/whatever.

@Kengur
Copy link

Kengur commented Apr 4, 2012

Swift retribution works only on retri aura, weird

@PKX
Copy link
Contributor

PKX commented Apr 4, 2012

It's some leftover from previous patch i think.
Anyway, I've found the aura for Swift Retribution: it's 63531 and it's shared with Sanctified Retribution.

@ghost ghost assigned Star-lion Apr 23, 2012
@ghost ghost assigned Subv Nov 17, 2012
@Aokromes
Copy link
Member

Aokromes commented Jun 6, 2014

#4313

@Aokromes Aokromes closed this as completed Jun 6, 2014
Trisjdc added a commit that referenced this issue Jun 15, 2014
Hlkz pushed a commit to Hlkz/Acore that referenced this issue Jun 27, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

7 participants