use of com.elmakers.mine.bukkit.action.builtin.AbsorbAction in project MagicPlugin by elBukkit.
the class AbsorbSpell method onCast.
@Override
public SpellResult onCast(ConfigurationSection parameters) {
target();
ActionHandler handler = new ActionHandler();
handler.loadAction(new AbsorbAction());
handler.initialize(this, parameters);
return handler.start(getCurrentCast(), parameters);
}
Aggregations