TriggerVolumeCommand class

Пакет: com.hypixel.hytale.builtin.triggervolumes.command

Файл: com/hypixel/hytale/builtin/triggervolumes/command/TriggerVolumeCommand.java

extends: AbstractCommandCollection

Методы (1)

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

Исходный код

Показать/скрыть
class="kw">package com.hypixel.hytale.builtin.triggervolumes.command;

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

class="kw">public class TriggerVolumeCommand class="kw">extends AbstractCommandCollection {
   class="kw">public TriggerVolumeCommand() {
      super("triggervolume", "server.commands.triggervolume.desc");
      this.setPermissionGroups("hytale:WorldEditor");
      this.addAliases("tv");
      this.addSubCommand(new TriggerVolumeCreateCommand());
      this.addSubCommand(new TriggerVolumeRemoveCommand());
      this.addSubCommand(new TriggerVolumeListCommand());
      this.addSubCommand(new TriggerVolumeInfoCommand());
      this.addSubCommand(new TriggerVolumeEnableCommand());
      this.addSubCommand(new TriggerVolumeDisableCommand());
      this.addSubCommand(new TriggerVolumeViewCommand());
      this.addSubCommand(new TriggerVolumeToolCommand());
      this.addSubCommand(new TriggerVolumeAssignEffectCommand());
      this.addSubCommand(new TriggerVolumeUnassignEffectCommand());
      this.addSubCommand(new TriggerVolumeAssignGroupEffectCommand());
      this.addSubCommand(new TriggerVolumeTagCommand());
      this.addSubCommand(new TriggerVolumeTpCommand());
      this.addSubCommand(new TriggerVolumeRenameCommand());
      this.addSubCommand(new TriggerVolumeEnableTagCommand());
      this.addSubCommand(new TriggerVolumeDisableTagCommand());
      this.addSubCommand(new TriggerVolumeListTagCommand());
      this.addSubCommand(new TriggerVolumeTestCommand());
      this.addSubCommand(new TriggerVolumeEffectsCommand());
      this.addSubCommand(new TriggerVolumeBrowseCommand());
      this.addSubCommand(new TriggerVolumeBenchmarkCommand());
   }
}