From 6fdccf27f6a76ae70250479af6db0164c016446b Mon Sep 17 00:00:00 2001 From: Zoey76 <zoey_76@msn.com> Date: Mon, 20 Jan 2014 23:06:09 +0000 Subject: [PATCH] BETA: Fix for extra cubic. Reported by: facheme Patch by: Sdw Tested by: facheme Reviewed by: Zoey76 --- .../game/data/scripts/handlers/effecthandlers/SummonCubic.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/SummonCubic.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/SummonCubic.java index 6543c4a48e..4c5e84d9b0 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/SummonCubic.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/effecthandlers/SummonCubic.java @@ -114,7 +114,7 @@ public final class SummonCubic extends AbstractEffect final BuffInfo cubicMastery = player.getEffectList().getBuffInfoBySkillId(L2Skill.SKILL_CUBIC_MASTERY); for (AbstractEffect effect : cubicMastery.getEffects()) { - allowedCubicCount += effect != null ? effect.getValue() : 0; + allowedCubicCount = effect != null ? (int) effect.getValue() : 1; } } -- GitLab