diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java index 331dc846b..6f4afdf98 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java @@ -18,9 +18,28 @@ */ package com.plotsquared.core.plot; +Used to specify the type of weather condition within the world. + + +/** + * The different types of weather that can be set for a Plot. + */ public enum PlotWeather { + + /** + * Rainy weather conditions + */ RAIN, + /** + * Clear weather conditions + */ CLEAR, + /** + * Use the weather of the world the plot is in + */ WORLD, + /** + * Turn off weather for the plot + */ OFF }