classpublicPriority 1
WorldConfigCommand
com.hypixel.hytale.server.core.universe.world.commands.worldconfig.WorldConfigCommand
extends AbstractCommandCollection
0
Methods
0
Public Methods
0
Fields
1
Constructors
Constructors
public
WorldConfigCommand()Inheritance
Parent
Current
Interface
Child
Use mouse wheel to zoom, drag to pan. Click nodes to navigate.
Related Classes
Used By
Source Code
package com.hypixel.hytale.server.core.universe.world.commands.worldconfig;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
public class WorldConfigCommand extends AbstractCommandCollection {
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());
}
}