HyCodeYourTale
classpublicPriority 1

WorldMapCommand

com.hypixel.hytale.server.core.command.commands.utility.worldmap.WorldMapCommand

extends AbstractCommandCollection

0

Methods

0

Public Methods

0

Fields

1

Constructors

Constructors

public
WorldMapCommand()

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.utility.worldmap;

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

public class WorldMapCommand extends AbstractCommandCollection {
   public WorldMapCommand() {
      super("worldmap", "server.commands.worldmap.desc");
      this.addAliases(new String[]{"map"});
      this.addSubCommand(new WorldMapReloadCommand());
      this.addSubCommand(new WorldMapDiscoverCommand());
      this.addSubCommand(new WorldMapUndiscoverCommand());
      this.addSubCommand(new WorldMapClearMarkersCommand());
      this.addSubCommand(new WorldMapViewRadiusSubCommand());
   }
}