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