WorldCommand class
Пакет: com.hypixel.hytale.server.core.universe.world.commands.world
Файл: com/hypixel/hytale/server/core/universe/world/commands/world/WorldCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("world", "server.commands.world.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.universe.world.commands.world;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">import com.hypixel.hytale.server.core.universe.world.commands.WorldSettingsCommand;
class="kw">import com.hypixel.hytale.server.core.universe.world.commands.world.perf.WorldPerfCommand;
class="kw">import com.hypixel.hytale.server.core.universe.world.commands.world.tps.WorldTpsCommand;
class="kw">import com.hypixel.hytale.server.core.universe.world.commands.worldconfig.WorldConfigCommand;
class="kw">import com.hypixel.hytale.server.core.universe.world.commands.worldconfig.WorldPauseCommand;
class="kw">public class WorldCommand class="kw">extends AbstractCommandCollection {
class="kw">public WorldCommand() {
super("world", "server.commands.world.desc");
this.addAliases("worlds");
this.addSubCommand(new WorldListCommand());
this.addSubCommand(new WorldRemoveCommand());
this.addSubCommand(new WorldPruneCommand());
this.addSubCommand(new WorldLoadCommand());
this.addSubCommand(new WorldAddCommand());
this.addSubCommand(new WorldSetDefaultCommand());
this.addSubCommand(new WorldSaveCommand());
this.addSubCommand(new WorldPauseCommand());
this.addSubCommand(new WorldConfigCommand());
this.addSubCommand(new WorldSettingsCommand());
this.addSubCommand(new WorldPerfCommand());
this.addSubCommand(new WorldTpsCommand());
this.addSubCommand(new WorldRocksDbCommand());
}
}