Fixing skill function and effect construction.

This commit is contained in:
MobiusDevelopment 2019-08-24 11:13:12 +00:00
parent 43e70eac9a
commit d72df382fb
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ public class EffectTemplate
try try
{ {
_func = Class.forName("org.l2jmobius.gameserver.skills.effects.Effect" + func); _func = Class.forName("org.l2jmobius.gameserver.model.skills.effects.Effect" + func);
} }
catch (ClassNotFoundException e) catch (ClassNotFoundException e)
{ {

View File

@ -45,7 +45,7 @@ public class FuncTemplate
lambda = pLambda; lambda = pLambda;
try try
{ {
func = Class.forName("org.l2jmobius.gameserver.skills.funcs.Func" + pFunc); func = Class.forName("org.l2jmobius.gameserver.model.skills.funcs.Func" + pFunc);
} }
catch (ClassNotFoundException e) catch (ClassNotFoundException e)
{ {