From d3dab0d736a3b19298120a3266a8ebc1d3fcd295 Mon Sep 17 00:00:00 2001 From: Matt <4009945+MattBDev@users.noreply.github.com> Date: Tue, 12 Sep 2023 21:13:04 -0400 Subject: [PATCH] Added documentation for PlotWeather --- .../plotsquared/core/plot/PlotWeather.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) 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 }