diff options
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/event/EventConfig.java | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/EventConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/EventConfig.java index b50c67ea6..251ce51ba 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/event/EventConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/EventConfig.java @@ -24,7 +24,7 @@ public class EventConfig { public WinterConfig winter = new WinterConfig(); @Expose - @Category(name = "Hoppity Eggs", desc = "Features for the Hoppity event.") + @Category(name = "Hoppity Eggs", desc = "Features for the Hoppity event that happens every SkyBlock spring.") public HoppityEggsConfig hoppityEggs = new HoppityEggsConfig(); @ConfigOption(name = "City Project", desc = "") diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java index f28aac82e..f42470966 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java @@ -25,15 +25,15 @@ import static at.hannibal2.skyhanni.config.features.inventory.InventoryConfig.It public class InventoryConfig { @Expose - @Category(name = "Skyblock Guide", desc = "") + @Category(name = "Skyblock Guide", desc = "Helps finding stuff to do in SkyBlock.") public SkyblockGuideConfig skyblockGuideConfig = new SkyblockGuideConfig(); @Expose - @Category(name = "Auction House", desc = "") + @Category(name = "Auction House", desc = "Be smart when buying or selling expensive items in the Auctions House.") public AuctionHouseConfig auctions = new AuctionHouseConfig(); @Expose - @Category(name = "Bazaar", desc = "Bazaar settings.") + @Category(name = "Bazaar", desc = "Be smart when buying or selling many items in the Bazaar.") public BazaarConfig bazaar = new BazaarConfig(); @Expose @@ -41,7 +41,7 @@ public class InventoryConfig { public EnchantParsingConfig enchantParsing = new EnchantParsingConfig(); @Expose - @Category(name = "Helpers", desc = "Settings for Helpers") + @Category(name = "Helpers", desc = "Some smaller Helper settings.") public HelperConfig helper = new HelperConfig(); @Expose @@ -49,11 +49,11 @@ public class InventoryConfig { public ItemAbilityConfig itemAbilities = new ItemAbilityConfig(); @Expose - @Category(name = "Chocolate Factory", desc = "The chocolate factory") + @Category(name = "Chocolate Factory", desc = "Features to help you master the Chocolate Factory idle game.") public ChocolateFactoryConfig chocolateFactory = new ChocolateFactoryConfig(); @Expose - @ConfigOption(name = "Not Clickable Items", desc = "") + @ConfigOption(name = "Not Clickable Items", desc = "Better not click that item.") @Accordion public HideNotClickableConfig hideNotClickable = new HideNotClickableConfig(); |