PrefabEditCommand class
Пакет: com.hypixel.hytale.builtin.buildertools.prefabeditor.commands
Файл: com/hypixel/hytale/builtin/buildertools/prefabeditor/commands/PrefabEditCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("editprefab", "server.commands.editprefab.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.builtin.buildertools.prefabeditor.commands;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">public class PrefabEditCommand class="kw">extends AbstractCommandCollection {
class="kw">public PrefabEditCommand() {
super("editprefab", "server.commands.editprefab.desc");
this.addAliases("prefabedit", "pedit");
this.setPermissionGroups("hytale:WorldEditor");
this.addSubCommand(new PrefabEditExitCommand());
this.addSubCommand(new PrefabEditLoadCommand());
this.addSubCommand(new PrefabEditCreateNewCommand());
this.addSubCommand(new PrefabEditSelectCommand());
this.addSubCommand(new PrefabEditSaveCommand());
this.addSubCommand(new PrefabEditSaveUICommand());
this.addSubCommand(new PrefabEditKillEntitiesCommand());
this.addSubCommand(new PrefabEditSaveAsCommand());
this.addSubCommand(new PrefabEditUpdateBoxCommand());
this.addSubCommand(new PrefabEditInfoCommand());
this.addSubCommand(new PrefabEditTeleportCommand());
this.addSubCommand(new PrefabEditModifiedCommand());
this.addSubCommand(new PrefabEditBackCommand());
}
}