Browse Source

BETA: Fixed an issue that was causing toggle skills with "Buff Effect" not work properly.

Reported by: blacksea
MELERIX 12 years ago
parent
commit
276a09f41d

+ 1 - 1
L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/Buff.java

@@ -54,6 +54,6 @@ public class Buff extends L2Effect
 	@Override
 	public boolean onActionTime()
 	{
-		return getSkill().isPassive();
+		return getSkill().isPassive() || getSkill().isToggle();
 	}
 }