Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
508
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 2.64 KB | None | 0 0
  1. Author: reeshack <richard.galis@gmail.com>  2010-11-14 21:57:10
  2. Committer: reeshack <richard.galis@gmail.com>  2010-11-14 21:57:10
  3. Parent: 95cf8604df97e0e12213d84c7c29ad38dbf4f574 ([pr934] Even more absorb & proc fixes)
  4. Branches: master, remotes/origin/master
  5. Follows: 333a
  6. Precedes:
  7.  
  8.     [pr935] Power Word: Fortitude & Fortitude(Svitek), Fortitude(Svitek) & Prayer of Fortitude(plosna) stacking (thx to Wallker)
  9.    
  10.     Signed-off-by: reeshack <richard.galis@gmail.com>
  11.  
  12. ---------------------------- src/game/SpellMgr.cpp ----------------------------
  13. index 22caf49..db0d9a0 100644
  14. @@ -2019,6 +2019,18 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
  15.  
  16.                      break;
  17.                  }
  18. +                case SPELLFAMILY_PRIEST:
  19. +                {
  20. +                    // Power Word: Fortitude and Fortitude(Svitek)
  21. +                    if (spellInfo_1->SpellIconID == 312 && spellInfo_2->SpellIconID == 685)
  22. +                        return true;
  23. +
  24. +                    // Fortitude(Svitek) and Prayer of Fortitude(plosna)
  25. +                    if (spellInfo_1->SpellIconID == 312 && spellInfo_2->SpellIconID == 1669)
  26. +                        return true;
  27. +
  28. +                    break;
  29. +                }
  30.              }
  31.              // Dragonmaw Illusion, Blood Elf Illusion, Human Illusion, Illidari Agent Illusion, Scarlet Crusade Disguise
  32.              if (spellInfo_1->SpellIconID == 1691 && spellInfo_2->SpellIconID == 1691)
  33. @@ -2206,6 +2218,12 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
  34.              //Renewed hope and gift of the naaru(have diff spell families)
  35.              else if (spellInfo_1->SpellIconID == 329 && spellInfo_2->SpellIconID == 329 && spellInfo_2->SpellVisual[0] == 7625)
  36.                  return false;
  37. +            // Power Word: Fortitude and Fortitude(Svitek)
  38. +            else if (spellInfo_2->SpellIconID == 312 && spellInfo_1->SpellIconID == 685)
  39. +                return true;
  40. +            // Fortitude(Svitek) and Prayer of Fortitude(plosna)
  41. +            else if (spellInfo_2->SpellIconID == 312 && spellInfo_1->SpellIconID == 1669)
  42. +                return true;
  43.              break;
  44.          case SPELLFAMILY_DRUID:
  45.              if ( spellInfo_2->SpellFamilyName == SPELLFAMILY_DRUID )
  46.  
  47. --------------------------- src/shared/revision_nr.h ---------------------------
  48. index fbec432..cef58d0 100644
  49. @@ -1,6 +1,6 @@
  50.  #ifndef __REVISION_NR_H__
  51.  #define __REVISION_NR_H__
  52.   #define REVISION_NR "10663"
  53. - #define REVISION_VP "pr934"
  54. + #define REVISION_VP "pr935"
  55.   #define REVISION_VP_DATE "14.11.2010"
  56.  #endif // __REVISION_NR_H__
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement