Skip to content

Commit

Permalink
Revert "Merge pull request #16535 from Eliminationzx/FixWrongSealOfRi…
Browse files Browse the repository at this point in the history
…ghteousnessCalculation" while we figure out more details (see discussion in the PR).

This reverts commit 1a213bd, reversing
changes made to 657adc2.
  • Loading branch information
Treeston committed Feb 16, 2016
1 parent 655fc01 commit ae58f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/scripts/Spells/spell_paladin.cpp
Expand Up @@ -1358,7 +1358,7 @@ class spell_pal_seal_of_righteousness : public SpellScriptLoader
float ap = GetTarget()->GetTotalAttackPowerValue(BASE_ATTACK);
int32 holy = GetTarget()->SpellBaseDamageBonusDone(SPELL_SCHOOL_MASK_HOLY);
holy += eventInfo.GetProcTarget()->SpellBaseDamageBonusTaken(SPELL_SCHOOL_MASK_HOLY);
int32 bp = int32((ap * 0.0225f + 0.0355f * holy) * GetTarget()->GetAttackTime(BASE_ATTACK) / 1000);
int32 bp = int32((ap * 0.022f + 0.044f * holy) * GetTarget()->GetAttackTime(BASE_ATTACK) / 1000);
GetTarget()->CastCustomSpell(SPELL_PALADIN_SEAL_OF_RIGHTEOUSNESS, SPELLVALUE_BASE_POINT0, bp, eventInfo.GetProcTarget(), true, NULL, aurEff);
}

Expand Down

0 comments on commit ae58f8e

Please sign in to comment.