mirror of
https://github.com/TotalFreedomMC/PlayerParticles.git
synced 2025-07-06 22:11:21 +00:00
35 lines
651 B
Java
35 lines
651 B
Java
![]() |
package com.esophose.playerparticles.command;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
import com.esophose.playerparticles.manager.LangManager.Lang;
|
||
|
import com.esophose.playerparticles.particles.PPlayer;
|
||
|
|
||
|
public class DataCommandModule implements CommandModule {
|
||
|
|
||
|
public void onCommandExecute(PPlayer pplayer, String[] args) {
|
||
|
|
||
|
}
|
||
|
|
||
|
public List<String> onTabComplete(PPlayer pplayer, String[] args) {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public String getName() {
|
||
|
return "data";
|
||
|
}
|
||
|
|
||
|
public String getDescription() {
|
||
|
return Lang.DATA_COMMAND_DESCRIPTION.get();
|
||
|
}
|
||
|
|
||
|
public String getArguments() {
|
||
|
return "<args>";
|
||
|
}
|
||
|
|
||
|
public boolean requiresEffects() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|