2018-09-26 02:07:46 -06:00
|
|
|
package com.esophose.playerparticles.command;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import com.esophose.playerparticles.manager.LangManager.Lang;
|
|
|
|
import com.esophose.playerparticles.particles.PPlayer;
|
|
|
|
|
|
|
|
public class AddCommandModule implements CommandModule {
|
|
|
|
|
|
|
|
public void onCommandExecute(PPlayer pplayer, String[] args) {
|
2018-09-26 23:31:00 -06:00
|
|
|
|
2018-09-26 02:07:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
public List<String> onTabComplete(PPlayer pplayer, String[] args) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return "add";
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
return Lang.ADD_COMMAND_DESCRIPTION.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getArguments() {
|
|
|
|
return "<effect> <style> [data]";
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean requiresEffects() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|