PlayerStatsSubCommand class

Пакет: com.hypixel.hytale.server.core.command.commands.player.stats

Файл: com/hypixel/hytale/server/core/command/commands/player/stats/PlayerStatsSubCommand.java

extends: AbstractCommandCollection

Методы (1)

МодификаторыВозвратСигнатура
abstract super super("stats", "server.commands.player.stats.desc")

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.command.commands.player.stats;

class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;

class="kw">public class PlayerStatsSubCommand class="kw">extends AbstractCommandCollection {
   class="kw">public PlayerStatsSubCommand() {
      super("stats", "server.commands.player.stats.desc");
      this.addAliases("stat");
      this.setPermissionGroups("hytale:Builder");
      this.addSubCommand(new PlayerStatsAddCommand());
      this.addSubCommand(new PlayerStatsGetCommand());
      this.addSubCommand(new PlayerStatsSetCommand());
      this.addSubCommand(new PlayerStatsSetToMaxCommand());
      this.addSubCommand(new PlayerStatsDumpCommand());
      this.addSubCommand(new PlayerStatsResetCommand());
   }
}