Skip to content

Commit

Permalink
[z1242] Fixed talent 11185 and ranks triggering for 1.x spell data.
Browse files Browse the repository at this point in the history
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
  • Loading branch information
sidsukana authored and VladimirMangos committed Jan 13, 2011
1 parent 8776c20 commit 5e42fed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/game/Unit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5277,21 +5277,21 @@ bool Unit::HandleOverrideClassScriptAuraProc(Unit *pVictim, Aura *triggeredByAur
{
case 836: // Improved Blizzard (Rank 1)
{
if (!procSpell || procSpell->SpellVisual!=9487)
if (!procSpell || procSpell->SpellVisual != 259)
return false;
triggered_spell_id = 12484;
break;
}
case 988: // Improved Blizzard (Rank 2)
{
if (!procSpell || procSpell->SpellVisual!=9487)
if (!procSpell || procSpell->SpellVisual != 259)
return false;
triggered_spell_id = 12485;
break;
}
case 989: // Improved Blizzard (Rank 3)
{
if (!procSpell || procSpell->SpellVisual!=9487)
if (!procSpell || procSpell->SpellVisual != 259)
return false;
triggered_spell_id = 12486;
break;
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "1241"
#define REVISION_NR "1242"
#endif // __REVISION_NR_H__

0 comments on commit 5e42fed

Please sign in to comment.