EntityStatsSubCommand class

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

Файл: com/hypixel/hytale/server/core/command/commands/world/entity/stats/EntityStatsSubCommand.java

extends: AbstractCommandCollection

Методы (1)

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

Исходный код

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

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

class="kw">public class EntityStatsSubCommand class="kw">extends AbstractCommandCollection {
   class="kw">public EntityStatsSubCommand() {
      super("stats", "server.commands.entity.stats.desc");
      this.addAliases("stat");
      this.addSubCommand(new EntityStatsDumpCommand());
      this.addSubCommand(new EntityStatsGetCommand());
      this.addSubCommand(new EntityStatsSetCommand());
      this.addSubCommand(new EntityStatsSetToMaxCommand());
      this.addSubCommand(new EntityStatsResetCommand());
      this.addSubCommand(new EntityStatsAddCommand());
   }
}