lindvior 11720
the break stun chance is 75% for crit hit and 10% for normal hit, please make this a config, it is too high.
Код:
public static boolean calcStunBreak(boolean crit)
{
return Rnd.chance(crit ? 75 : 10);
}
******
Код:
if ((target.isStunned()) && (calcStunBreak(info.crit))) {
target.getEffectList().stopEffects(EffectType.Stun);
}
that
is only for physical damage
magic can NEVER break stun, please FIX