WhitelistCommand class

Пакет: com.hypixel.hytale.server.core.modules.accesscontrol.commands

Файл: com/hypixel/hytale/server/core/modules/accesscontrol/commands/WhitelistCommand.java

extends: AbstractCommandCollection

Методы (1)

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

Исходный код

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

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

class="kw">public class WhitelistCommand class="kw">extends AbstractCommandCollection {
   class="kw">public WhitelistCommand() {
      super("whitelist", "server.commands.whitelist.desc");
      this.addSubCommand(new WhitelistAddCommand());
      this.addSubCommand(new WhitelistRemoveCommand());
      this.addSubCommand(new WhitelistEnableCommand());
      this.addSubCommand(new WhitelistDisableCommand());
      this.addSubCommand(new WhitelistClearCommand());
      this.addSubCommand(new WhitelistStatusCommand());
      this.addSubCommand(new WhitelistListCommand());
   }
}