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 17b7da414b5c295086378755b069db8e18d06d76..b76d44b536451e38be4a537efd11685253bf36b9 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);
 			}
 		}