Hit chance doesn't take player level into account.
olepg opened this issue ยท 0 comments
Change Line 1015 to 1017 to:
GameTooltip:AddDoubleLine(format(" Level %s NPC: %.2F%%", UnitLevel("Player"), missChanceVsNPC), format("(Dual wield: %.2F%%)", dwMissChanceVsNpc));
GameTooltip:AddDoubleLine(format(" Level %s Player: %.2F%%", UnitLevel("Player"), missChanceVsPlayer), format("(Dual wield: %.2F%%)", dwMissChanceVsPlayer));
GameTooltip:AddDoubleLine(format(" Level %s NPC/Boss: %.2F%%", UnitLevel("Player") + 3, missChanceVsBoss), format("(Dual wield: %.2F%%)", dwMissChanceVsBoss));```