Paladin Melee Hit fixed, spell hit still wrong.
LordOfOtakus opened this issue ยท 1 comments
On the most recent version of ECS for Wrath, (3.0.2), Melee hit for Paladins was fixed (since the Precision talent no longer existed). Spell hit is still being given 5% extra hit, however.
Easiest fix is replacing line 53 in "SpellHit.lua" (which is "if classId == Data.PALADIN and ECS.IsWotlk then") with "if (not ECS.IsWotlk) and classId == Data.PALADIN then".