diff --git a/src/main/java/net/Indyuce/mmocore/api/player/profess/ClassOption.java b/src/main/java/net/Indyuce/mmocore/api/player/profess/ClassOption.java index 3d950b9f..5a6e5e29 100644 --- a/src/main/java/net/Indyuce/mmocore/api/player/profess/ClassOption.java +++ b/src/main/java/net/Indyuce/mmocore/api/player/profess/ClassOption.java @@ -2,22 +2,34 @@ package net.Indyuce.mmocore.api.player.profess; public enum ClassOption { - /* - * is class by default + /** + * If the class should be applied to newcomers */ DEFAULT, - /* - * displays in the /class GUI + /** + * If the class should in the /class GUI */ DISPLAY(true), - /* - * only regen resource when out of combat + /** + * Health only regens when out of combat */ OFF_COMBAT_HEALTH_REGEN, + + /** + * Mana only regens when out of combat + */ OFF_COMBAT_MANA_REGEN, + + /** + * Stamina only regens when out of combat + */ OFF_COMBAT_STAMINA_REGEN, + + /** + * Stellium only regens when out of combat + */ OFF_COMBAT_STELLIUM_REGEN; private final boolean def;