PlayerStatsSubCommand.java
package com.hypixel.hytale.server.core.command.commands.player.stats;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
public class PlayerStatsSubCommand extends AbstractCommandCollection {
public PlayerStatsSubCommand() {
super("stats", "server.commands.player.stats.desc");
this.addAliases(new String[]{"stat"});
this.addSubCommand(new PlayerStatsAddCommand());
this.addSubCommand(new PlayerStatsGetCommand());
this.addSubCommand(new PlayerStatsSetCommand());
this.addSubCommand(new PlayerStatsSetToMaxCommand());
this.addSubCommand(new PlayerStatsDumpCommand());
this.addSubCommand(new PlayerStatsResetCommand());
}
}