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