From 51839f0b3a22f95d50dfd839690990ba9066940b Mon Sep 17 00:00:00 2001 From: Nos <NosBit@users.noreply.github.com> Date: Wed, 22 Jan 2014 15:03:24 +0000 Subject: [PATCH] BETA: DP-Part for [L6361] * Cleaned up a bit `StealAbnormal` effect. Tested by: St3et Reviewed by: St3et --- .../effecthandlers/StealAbnormal.java | 20 ++----------------- 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/StealAbnormal.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/StealAbnormal.java index 17b7da414b..b76d44b536 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/StealAbnormal.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/StealAbnormal.java @@ -81,24 +81,8 @@ public final class StealAbnormal extends AbstractEffect final BuffInfo stolen = new BuffInfo(env); stolen.setAbnormalTime(infoToSteal.getTime()); // Copy the remaining time. // To include all the effects, it's required to go through the template rather the buff info. - for (AbstractEffect effect : infoToSteal.getSkill().getEffects(EffectScope.GENERAL)) - { - if (effect != null) - { - if (effect.isInstant()) - { - if (effect.calcSuccess(stolen)) - { - effect.onStart(stolen); - } - } - else if (effect.canStart(stolen)) - { - stolen.addEffect(effect); - } - } - } - info.getEffected().getEffectList().remove(infoToSteal); + infoToSteal.getSkill().applyEffectScope(EffectScope.GENERAL, stolen, true, true); + info.getEffected().getEffectList().remove(true, infoToSteal); info.getEffector().getEffectList().add(stolen); } } -- GitLab