I think the application is incorrectly handling bonus threat.
The known bonus threat on abilities is measured and calculated before applying the threat modifiers. However, your application adds the bonus threat after the threat mod.
In other words, you have:
T_ability = ( T_damage * T_mod ) + T_bonus
when it should be:
T_ability = (T_damage + T_bonus ) * T_mod
You end up with very skewed results for Warriors, who gain a large chunk of their threat from innate bonus on abilities. It affects Druids as well, while Paladins won't notice this problem, by the nature of their threat mechanics.
Source: bagelbite
Question:
So, to properly calculate threat from pally healing effects while tanking(like, prayer of mending heals) would it be
effective heal of 1000
1000 x 0.5 x 0.5
result 250 threat? |
This I'm not sure on; I don't know if anyone's explicitly tested to see if the Paladin's 0.5x passive healing threat applies to healing not done by their spells (potions, PoM, etc).