WeatherCommand class
Пакет: com.hypixel.hytale.builtin.weather.commands
Файл: com/hypixel/hytale/builtin/weather/commands/WeatherCommand.java
extends: AbstractCommandCollection
Методы (1)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
|
super super("weather", "server.commands.weather.desc") |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.builtin.weather.commands;
class="kw">import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
class="kw">public class WeatherCommand class="kw">extends AbstractCommandCollection {
class="kw">public WeatherCommand() {
super("weather", "server.commands.weather.desc");
this.setPermissionGroups("hytale:WorldEditor");
this.addSubCommand(new WeatherSetCommand());
this.addSubCommand(new WeatherGetCommand());
this.addSubCommand(new WeatherResetCommand());
}
}