aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/Features.java
diff options
context:
space:
mode:
authorWalker Selby <git@walkerselby.com>2023-11-05 15:21:54 +0000
committerGitHub <noreply@github.com>2023-11-05 16:21:54 +0100
commit3c94ef471755ac333a8ab1a4ed4b26af2fe1be25 (patch)
treecf5e108e9d7116903dc79b8a2216bddf2ceff7ad /src/main/java/at/hannibal2/skyhanni/config/Features.java
parentd4b684fb35fb97fdf7a7548555dc8eb0a9dda2a9 (diff)
downloadskyhanni-3c94ef471755ac333a8ab1a4ed4b26af2fe1be25.tar.gz
skyhanni-3c94ef471755ac333a8ab1a4ed4b26af2fe1be25.tar.bz2
skyhanni-3c94ef471755ac333a8ab1a4ed4b26af2fe1be25.zip
Re-order config elements to be alphabetical (#625)
Change config order to alphabetical. #625
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/Features.java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/Features.java58
1 files changed, 32 insertions, 26 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java
index 9ae08f094..7f262474f 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/Features.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java
@@ -59,6 +59,12 @@ public class Features extends Config {
return "SkyHanni " + SkyHanniMod.getVersion() + " by §channibal2§r, config by §5Moulberry §rand §5nea89";
}
+ /*
+ * If you are adding a new category, please insert it alphabetically
+ * The only exceptions to this are About and GUI, which are pinned to the top
+ * and Misc and Dev, which are to be at the bottom. Thanks!
+ */
+
@Expose
@Category(name = "About", desc = "Information about SkyHanni and updates")
public About about = new About();
@@ -68,68 +74,68 @@ public class Features extends Config {
public GUIConfig gui = new GUIConfig();
@Expose
- @Category(name = "Chroma", desc = "Settings for Chroma text. (Credit to SBA)")
- public ChromaConfig chroma = new ChromaConfig();
+ @Category(name = "Bazaar", desc = "Bazaar settings.")
+ public BazaarConfig bazaar = new BazaarConfig();
@Expose
@Category(name = "Chat", desc = "Change how the chat looks.")
public ChatConfig chat = new ChatConfig();
@Expose
- @Category(name = "Dungeon", desc = "Features that change the Dungeons experience in The Catacombs.")
- public DungeonConfig dungeon = new DungeonConfig();
+ @Category(name = "Chroma", desc = "Settings for Chroma text. (Credit to SBA)")
+ public ChromaConfig chroma = new ChromaConfig();
@Expose
- @Category(name = "Inventory", desc = "Change the behavior of items and the inventory.")
- public InventoryConfig inventory = new InventoryConfig();
+ @Category(name = "Combat", desc = "Everything combat and PvE related.")
+ public CombatConfig combat = new CombatConfig();
@Expose
- @Category(name = "Item Abilities", desc = "Stuff about item abilities.")
- public ItemAbilityConfig itemAbilities = new ItemAbilityConfig();
+ @Category(name = "Commands", desc = "Enable or disable commands.")
+ public CommandsConfig commands = new CommandsConfig();
@Expose
@Category(name = "Crimson Isle", desc = "Things to do on the Crimson Isle/Nether island.")
public CrimsonIsleConfig crimsonIsle = new CrimsonIsleConfig();
@Expose
- @Category(name = "Minion", desc = "The minions on your private island.")
- public MinionsConfig minions = new MinionsConfig();
+ @Category(name = "Dungeon", desc = "Features that change the Dungeons experience in The Catacombs.")
+ public DungeonConfig dungeon = new DungeonConfig();
@Expose
- @Category(name = "Bazaar", desc = "Bazaar settings.")
- public BazaarConfig bazaar = new BazaarConfig();
+ @Category(name = "Events", desc = "Stuff that is not always available.")
+ public EventConfig event = new EventConfig();
@Expose
@Category(name = "Fishing", desc = "Fishing stuff.")
public FishingConfig fishing = new FishingConfig();
@Expose
- @Category(name = "Combat", desc = "Everything combat and PvE related.")
- public CombatConfig combat = new CombatConfig();
-
- @Expose
- @Category(name = "Slayer", desc = "Slayer features.")
- public SlayerConfig slayer = new SlayerConfig();
+ @Category(name = "Garden", desc = "Features for the Garden island.")
+ public GardenConfig garden = new GardenConfig();
@Expose
- @Category(name = "Mining", desc = "Features that help you break blocks.")
- public MiningConfig mining = new MiningConfig();
+ @Category(name = "Inventory", desc = "Change the behavior of items and the inventory.")
+ public InventoryConfig inventory = new InventoryConfig();
@Expose
- @Category(name = "Commands", desc = "Enable or disable commands.")
- public CommandsConfig commands = new CommandsConfig();
+ @Category(name = "Item Abilities", desc = "Stuff about item abilities.")
+ public ItemAbilityConfig itemAbilities = new ItemAbilityConfig();
@Expose
@Category(name = "Marked Players", desc = "Players that got marked with §e/shmarkplayer§7.")
public MarkedPlayerConfig markedPlayers = new MarkedPlayerConfig();
@Expose
- @Category(name = "Events", desc = "Stuff that is not always available.")
- public EventConfig event = new EventConfig();
+ @Category(name = "Minions", desc = "The minions on your private island.")
+ public MinionsConfig minions = new MinionsConfig();
@Expose
- @Category(name = "Garden", desc = "Features for the Garden island.")
- public GardenConfig garden = new GardenConfig();
+ @Category(name = "Mining", desc = "Features that help you break blocks.")
+ public MiningConfig mining = new MiningConfig();
+
+ @Expose
+ @Category(name = "Slayer", desc = "Slayer features.")
+ public SlayerConfig slayer = new SlayerConfig();
@Expose
@Category(name = "The Rift", desc = "Features for The Rift dimension.")