diff --git a/Plugins/Mineplex.Core/src/mineplex/core/elo/EloManager.java b/Plugins/Mineplex.Core/src/mineplex/core/elo/EloManager.java index 34869e686..f8419484d 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/elo/EloManager.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/elo/EloManager.java @@ -210,7 +210,10 @@ public class EloManager extends MiniDbClientPlugin _eloTeams.clear(); } - + + /** + * Manages and stores all Elo divisions and required data for those divisions for proper operation of Elo division display in-game. + */ public enum EloDivision { DIAMOND("Diamond", -1, 3700, Material.DIAMOND_BLOCK), diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/RankedTeamGame.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/RankedTeamGame.java index 450b3a4de..272cd67c2 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/RankedTeamGame.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/RankedTeamGame.java @@ -21,6 +21,9 @@ import org.bukkit.event.player.PlayerLoginEvent; import org.bukkit.event.player.PlayerLoginEvent.Result; import org.bukkit.event.player.PlayerQuitEvent; +/** + * Wrapper for team games to implement for simple universal use of Elo and Ranked methods. + */ public abstract class RankedTeamGame extends TeamGame { public int MaxPlayers = -1;