classpublicPriority 1
WorldCommand
com.hypixel.hytale.server.core.universe.world.commands.world.WorldCommand
extends AbstractCommandCollection
0
Methods
0
Public Methods
0
Fields
1
Constructors
Constructors
public
WorldCommand()Inheritance
Parent
Current
Interface
Child
Use mouse wheel to zoom, drag to pan. Click nodes to navigate.
Related Classes
Source Code
package com.hypixel.hytale.server.core.universe.world.commands.world;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
import com.hypixel.hytale.server.core.universe.world.commands.WorldSettingsCommand;
import com.hypixel.hytale.server.core.universe.world.commands.world.perf.WorldPerfCommand;
import com.hypixel.hytale.server.core.universe.world.commands.world.tps.WorldTpsCommand;
import com.hypixel.hytale.server.core.universe.world.commands.worldconfig.WorldConfigCommand;
import com.hypixel.hytale.server.core.universe.world.commands.worldconfig.WorldPauseCommand;
public class WorldCommand extends AbstractCommandCollection {
public WorldCommand() {
super("world", "server.commands.world.desc");
this.addAliases(new String[]{"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());
}
}