classpublicPriority 1
WeatherGetCommand
com.hypixel.hytale.builtin.weather.commands.WeatherGetCommand
extends AbstractWorldCommand
0
Methods
0
Public Methods
0
Fields
1
Constructors
Constants
MessageMESSAGE_COMMANDS_WEATHER_GET_FORCED_WEATHER= Message.translation("server.commands.weather.get.getForcedWeather")
Constructors
public
WeatherGetCommand()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.builtin.weather.commands;
import com.hypixel.hytale.builtin.weather.resources.WeatherResource;
import com.hypixel.hytale.component.Store;
import com.hypixel.hytale.server.core.Message;
import com.hypixel.hytale.server.core.asset.type.weather.config.Weather;
import com.hypixel.hytale.server.core.command.system.CommandContext;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractWorldCommand;
import com.hypixel.hytale.server.core.universe.world.World;
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
import javax.annotation.Nonnull;
public class WeatherGetCommand extends AbstractWorldCommand {
@Nonnull
private static final Message MESSAGE_COMMANDS_WEATHER_GET_FORCED_WEATHER = Message.translation("server.commands.weather.get.getForcedWeather");
public WeatherGetCommand() {
super("get", "server.commands.weather.get.desc");
}
@Override
protected void execute(@Nonnull CommandContext context, @Nonnull World world, @Nonnull Store<EntityStore> store) {
WeatherResource weatherResource = store.getResource(WeatherResource.getResourceType());
int forcedWeatherIndex = weatherResource.getForcedWeatherIndex();
String weatherId;
if (forcedWeatherIndex != 0) {
Weather weatherAsset = Weather.getAssetMap().getAsset(forcedWeatherIndex);
weatherId = weatherAsset.getId();
} else {
weatherId = "not locked";
}
context.sendMessage(MESSAGE_COMMANDS_WEATHER_GET_FORCED_WEATHER.param("worldName", world.getName()).param("weather", weatherId));
}
}