EntityCommand class
Пакет: com.hypixel.hytale.server.core.command.commands.world.entity
Файл: com/hypixel/hytale/server/core/command/commands/world/entity/EntityCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("entity", "server.commands.entity.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.command.commands.world.entity;
class="kw">import com.hypixel.hytale.server.core.command.commands.world.entity.snapshot.EntitySnapshotSubCommand;
class="kw">import com.hypixel.hytale.server.core.command.commands.world.entity.stats.EntityStatsSubCommand;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">public class EntityCommand class="kw">extends AbstractCommandCollection {
class="kw">public EntityCommand() {
super("entity", "server.commands.entity.desc");
this.addAliases("entities");
this.setPermissionGroups("hytale:WorldEditor");
this.addSubCommand(new EntityCloneCommand());
this.addSubCommand(new EntityRemoveCommand());
this.addSubCommand(new EntityDumpCommand());
this.addSubCommand(new EntityCleanCommand());
this.addSubCommand(new EntityLodCommand());
this.addSubCommand(new EntityTrackerCommand());
this.addSubCommand(new EntityResendCommand());
this.addSubCommand(new EntityNameplateCommand());
this.addSubCommand(new EntityStatsSubCommand());
this.addSubCommand(new EntitySnapshotSubCommand());
this.addSubCommand(new EntityEffectCommand());
this.addSubCommand(new EntityMakeInteractableCommand());
this.addSubCommand(new EntityIntangibleCommand());
this.addSubCommand(new EntityInvulnerableCommand());
this.addSubCommand(new EntityHideFromAdventurePlayersCommand());
this.addSubCommand(new EntityCountCommand());
}
}