PlayerCommand class
Пакет: com.hypixel.hytale.server.core.command.commands.player
Файл: com/hypixel/hytale/server/core/command/commands/player/PlayerCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("player", "server.commands.player.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.command.commands.player;
class="kw">import com.hypixel.hytale.server.core.command.commands.player.camera.PlayerCameraSubCommand;
class="kw">import com.hypixel.hytale.server.core.command.commands.player.effect.PlayerEffectSubCommand;
class="kw">import com.hypixel.hytale.server.core.command.commands.player.lives.PlayerLivesSubCommand;
class="kw">import com.hypixel.hytale.server.core.command.commands.player.stats.PlayerStatsSubCommand;
class="kw">import com.hypixel.hytale.server.core.command.commands.player.viewradius.PlayerViewRadiusSubCommand;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">public class PlayerCommand class="kw">extends AbstractCommandCollection {
class="kw">public PlayerCommand() {
super("player", "server.commands.player.desc");
this.setPermissionGroups("hytale:WorldEditor");
this.addSubCommand(new PlayerResetCommand());
this.addSubCommand(new PlayerStatsSubCommand());
this.addSubCommand(new PlayerEffectSubCommand());
this.addSubCommand(new PlayerRespawnCommand());
this.addSubCommand(new PlayerLivesSubCommand());
this.addSubCommand(new PlayerCameraSubCommand());
this.addSubCommand(new PlayerViewRadiusSubCommand());
this.addSubCommand(new PlayerZoneCommand());
}
}