aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNay <dnpd.dd@gmail.com>2012-09-11 14:38:01 -0700
committerNay <dnpd.dd@gmail.com>2012-09-11 14:38:01 -0700
commit64cadf9470d17fc5a0164571b3439a56c413983c (patch)
tree70d9653d919f8f701ff89666b3d4aed43dbf88fd
parentf83ae98a393674f80c94547489718db96c8898a7 (diff)
parent9483653c1e68f2588939fecdb221b80cd50b4514 (diff)
Merge pull request #7733 from CrYser/4.3.4
[4.3.4]Core/Spells: Glyph of might
-rwxr-xr-xsrc/server/game/Entities/Unit/Unit.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/server/game/Entities/Unit/Unit.cpp b/src/server/game/Entities/Unit/Unit.cpp
index 01ee90ce895..99d43a2e33d 100755
--- a/src/server/game/Entities/Unit/Unit.cpp
+++ b/src/server/game/Entities/Unit/Unit.cpp
@@ -12320,20 +12320,6 @@ int32 Unit::ModSpellDuration(SpellInfo const* spellProto, Unit const* target, in
duration += aurEff->GetAmount() * MINUTE * IN_MILLISECONDS;
}
break;
- case SPELLFAMILY_PALADIN:
- if ((spellProto->SpellFamilyFlags[0] & 0x00000002) && spellProto->SpellIconID == 298)
- {
- // Glyph of Blessing of Might
- if (AuraEffect* aurEff = GetAuraEffect(57958, 0))
- duration += aurEff->GetAmount() * MINUTE * IN_MILLISECONDS;
- }
- else if ((spellProto->SpellFamilyFlags[0] & 0x00010000) && spellProto->SpellIconID == 306)
- {
- // Glyph of Blessing of Wisdom
- if (AuraEffect* aurEff = GetAuraEffect(57979, 0))
- duration += aurEff->GetAmount() * MINUTE * IN_MILLISECONDS;
- }
- break;
}
}
return std::max(duration, 0);