HyCodeYourTale
classpublicPriority 1

WorldGenCommand

com.hypixel.hytale.server.core.command.commands.world.worldgen.WorldGenCommand

extends AbstractCommandCollection

0

Methods

0

Public Methods

0

Fields

1

Constructors

Constructors

public
WorldGenCommand()

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.command.commands.world.worldgen;

import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;

public class WorldGenCommand extends AbstractCommandCollection {
   public WorldGenCommand() {
      super("worldgen", "server.commands.worldgen.desc");
      this.addAliases(new String[]{"wg"});
      this.addSubCommand(new WorldGenBenchmarkCommand());
      this.addSubCommand(new WorldGenReloadCommand());
   }
}