22.07.2014, 21:22 | #1 |
L2-scripts клиент Classic 1.5 + ГЕО до 1 июля
Регистрация: 23.09.2013
Сообщений: 437
|
[CORE] Break stun chance too big + only for physical
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); } is only for physical damage magic can NEVER break stun, please FIX |