// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.command.commands.player.stats;

import com.hypixel.hytale.server.core.command.system.AbstractCommand;
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("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());
    }
}
