diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/Fountain.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/Fountain.java index 0ad3ee44f..120dc1d3c 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/Fountain.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/Fountain.java @@ -23,6 +23,7 @@ import java.io.File; import java.io.IOException; /** + * Represents a fountain that players can add gems to, with a reward for reaching specific goals * @author Shaun Bennett */ public class Fountain implements GoalCounterListener diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java index b9d5afda3..de474dbad 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/AddCommand.java @@ -11,6 +11,7 @@ import mineplex.core.server.util.TransactionResponse; import org.bukkit.entity.Player; /** + * Command to add gems to the fountain * @author Shaun Bennett */ public class AddCommand extends CommandBase diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java index 3f8f80127..2a6b1d667 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/GuiCommand.java @@ -8,6 +8,7 @@ import mineplex.core.common.util.UtilPlayer; import org.bukkit.entity.Player; /** + * Command to open the fountain gui without speaking to the fountain keeper * @author Shaun Bennett */ public class GuiCommand extends CommandBase diff --git a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java index c72dff6cc..4589eb2a4 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/brawl/fountain/command/ResetCommand.java @@ -8,6 +8,7 @@ import mineplex.core.common.util.UtilPlayer; import org.bukkit.entity.Player; /** + * Command to reset the fountain * @author Shaun Bennett */ public class ResetCommand extends CommandBase