Browse Source

BETA: Herbs & Potions effects should be shared with Servitors, thanks u3games for report and Zoey76 for confirm it in retail.

MELERIX 13 years ago
parent
commit
a346cb1fb4

+ 1 - 1
L2J_DataPack_BETA/dist/game/data/scripts/handlers/skillhandlers/Continuous.java

@@ -218,7 +218,7 @@ public class Continuous implements ISkillHandler
 					L2Summon summon = target.getPet();
 					if (summon != null && summon != activeChar && summon.isServitor() && effects.length > 0)
 					{
-						if (effects[0].canBeStolen() || skill.isHeroSkill())
+						if (effects[0].canBeStolen() || skill.isHeroSkill() || skill.isStatic())
 							skill.getEffects(activeChar, target.getPet(), new Env(shld, ss, sps, bss));
 					}
 				}