use of com.github.games647.changeskin.bukkit.command.SkullCommand in project ChangeSkin by games647.
the class ChangeSkinBukkit method registerCommands.
private void registerCommands() {
getCommand("setskin").setExecutor(new SetCommand(this));
getCommand("skinupdate").setExecutor(new InvalidateCommand(this));
getCommand("skinselect").setExecutor(new SelectCommand(this));
getCommand("skinupload").setExecutor(new UploadCommand(this));
getCommand("skinskull").setExecutor(new SkullCommand(this));
getCommand("skin-info").setExecutor(new InfoCommand(this));
}
Aggregations