aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-02-19 00:55:03 +0100
committerGitHub <noreply@github.com>2024-02-19 00:55:03 +0100
commit97ab3476c490b2b035d1dafebbc47e27c1ecc176 (patch)
tree95a8add917cdd5c87ae661f04447ea8749d0e0e4 /src
parent58be34abd12742248986a118bc2d784b12ae4fd2 (diff)
downloadskyhanni-97ab3476c490b2b035d1dafebbc47e27c1ecc176.tar.gz
skyhanni-97ab3476c490b2b035d1dafebbc47e27c1ecc176.tar.bz2
skyhanni-97ab3476c490b2b035d1dafebbc47e27c1ecc176.zip
Internal Change: Cleanup Features Config (#1023)
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatSymbols.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/combat/BestiaryConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/combat/EnderNodeConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/combat/ghostcounter/GhostCounterConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/winter/FrozenTreasureConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/ChatMessagesConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/SensitivityReducerConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/TooltipTweaksConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/composter/ComposterConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/CropMilestonesConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/MushroomPetPerkConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestSpawnConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/DropsStatisticsConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/InventoryConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/SackDisplayConfig.java8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/itemability/FireVeilWandConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/markedplayer/MarkedPlayerConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/mining/PowderTrackerConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/HideArmorConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/TrackerConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/TrevorTheTrapperConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/rift/motes/RiftInventoryValueConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/slayer/blaze/BlazeHellionConfig.java2
32 files changed, 44 insertions, 44 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatSymbols.java b/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatSymbols.java
index edb9b5af6..21f49dd1b 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatSymbols.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/chat/ChatSymbols.java
@@ -20,7 +20,7 @@ public class ChatSymbols {
@Expose
@ConfigOption(name = "Chat Symbol Location", desc = "Determines where the symbols should go in chat in relation to the " +
"player's name. Hidden will hide all emblems from the chat. §eRequires above setting to be on to hide the symbols.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public SymbolLocationEntry symbolLocation = SymbolLocationEntry.LEFT;
public enum SymbolLocationEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java
index 45e2d12ac..fc455b5d2 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/chroma/ChromaConfig.java
@@ -41,7 +41,7 @@ public class ChromaConfig {
@Expose
@ConfigOption(name = "Chroma Direction", desc = "Change the slant and direction of the chroma.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Direction chromaDirection = Direction.FORWARD_RIGHT;
public enum Direction implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/combat/BestiaryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/combat/BestiaryConfig.java
index 1e9c7f4a6..f294e8a45 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/combat/BestiaryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/combat/BestiaryConfig.java
@@ -17,7 +17,7 @@ public class BestiaryConfig {
@Expose
@ConfigOption(name = "Number format", desc = "Short: 1.1k\nLong: 1.100")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public NumberFormatEntry numberFormat = NumberFormatEntry.SHORT;
public enum NumberFormatEntry implements HasLegacyId {
@@ -50,7 +50,7 @@ public class BestiaryConfig {
@Expose
@ConfigOption(name = "Display type", desc = "Choose what the display should show")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public DisplayTypeEntry displayType = DisplayTypeEntry.GLOBAL_MAX;
public enum DisplayTypeEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/combat/EnderNodeConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/combat/EnderNodeConfig.java
index 37f6cdfb8..db636f269 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/combat/EnderNodeConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/combat/EnderNodeConfig.java
@@ -46,7 +46,7 @@ public class EnderNodeConfig {
name = "Text Format",
desc = "Drag text to change the appearance of the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public Property<List<EnderNodeDisplayEntry>> textFormat = Property.of(new ArrayList<>(Arrays.asList(
TITLE,
NODES_MINED,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java
index e7650b9eb..cef9fee75 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java
@@ -45,7 +45,7 @@ public class DamageIndicatorConfig {
@ConfigOption(
name = "Boss Name",
desc = "Change how the boss name should be displayed.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public NameVisibility bossName = NameVisibility.FULL_NAME;
public enum NameVisibility implements HasLegacyId {
@@ -83,7 +83,7 @@ public class DamageIndicatorConfig {
name = "Select Boss",
desc = "Change what type of boss you want the damage indicator be enabled for."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
//TODO only show currently working and tested features
public List<BossCategory> bossesToShow = new ArrayList<>(Arrays.asList(
NETHER_MINI_BOSSES,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/combat/ghostcounter/GhostCounterConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/combat/ghostcounter/GhostCounterConfig.java
index 6bc8ee48d..504fba9fe 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/combat/ghostcounter/GhostCounterConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/combat/ghostcounter/GhostCounterConfig.java
@@ -40,7 +40,7 @@ public class GhostCounterConfig {
name = "Display Text",
desc = "Drag text to change the appearance of the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<GhostDisplayEntry> ghostDisplayText = new ArrayList<>(Arrays.asList(
TITLE,
GHOSTS_KILLED,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java
index a17323082..9e4806408 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/crimsonisle/ReputationHelperConfig.java
@@ -40,7 +40,7 @@ public class ReputationHelperConfig {
@Expose
@ConfigOption(name = "Show Locations", desc = "Crimson Isles waypoints for locations to get reputation.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public ShowLocationEntry showLocation = ShowLocationEntry.ONLY_HOTKEY;
public enum ShowLocationEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/winter/FrozenTreasureConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/winter/FrozenTreasureConfig.java
index 6ed609948..c6c5200b3 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/event/winter/FrozenTreasureConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/winter/FrozenTreasureConfig.java
@@ -43,7 +43,7 @@ public class FrozenTreasureConfig {
name = "Text Format",
desc = "Drag text to change the appearance of the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<FrozenTreasureDisplayEntry> textFormat = new ArrayList<>(Arrays.asList(
TITLE,
TREASURES_MINED,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/ChatMessagesConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/ChatMessagesConfig.java
index 3cba03d78..a595a6c5e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/ChatMessagesConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/trophyfishing/ChatMessagesConfig.java
@@ -25,7 +25,7 @@ public class ChatMessagesConfig {
"§fStyle 2: §bYou caught a §5Moldfin §6§lGOLD§b. §7(2)\n" +
"§fStyle 3: §bYou caught your 2nd §6§lGOLD §5Moldfin§b."
)
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public DesignFormat design = DesignFormat.STYLE_1;
public enum DesignFormat implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java
index d3162185a..19b2ee1bb 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java
@@ -38,7 +38,7 @@ public class NextJacobContestConfig {
@Expose
@ConfigOption(name = "Share Contests", desc = "Share the list of upcoming Contests to elitebot.dev for everyone else to then fetch automatically.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public ShareContestsEntry shareAutomatically = ShareContestsEntry.ASK;
public enum ShareContestsEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/SensitivityReducerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/SensitivityReducerConfig.java
index 1904dbdc1..d20993c09 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/SensitivityReducerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/SensitivityReducerConfig.java
@@ -15,7 +15,7 @@ public class SensitivityReducerConfig {
@ConfigOption(
name = "Mode",
desc = "Lowers mouse sensitivity while in the garden.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Mode mode = Mode.OFF;
public enum Mode {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/TooltipTweaksConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/TooltipTweaksConfig.java
index 511e15759..5d64b8fe8 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/TooltipTweaksConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/TooltipTweaksConfig.java
@@ -34,7 +34,7 @@ public class TooltipTweaksConfig {
"§fShow: §7Crop-specific Fortune indicated as §6[+196]\n" +
"§fReplace: §7Edits the total Fortune to include crop-specific Fortune."
)
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public CropTooltipFortuneEntry cropTooltipFortune = CropTooltipFortuneEntry.SHOW;
public enum CropTooltipFortuneEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/composter/ComposterConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/composter/ComposterConfig.java
index 2d3da1ce5..ee74f8c8f 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/composter/ComposterConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/composter/ComposterConfig.java
@@ -21,7 +21,7 @@ public class ComposterConfig {
@Expose
@ConfigOption(name = "Overlay Price", desc = "Toggle for Bazaar 'buy order' vs 'instant buy' price in composter overlay.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public OverlayPriceTypeEntry overlayPriceType = OverlayPriceTypeEntry.INSTANT_BUY;
public enum OverlayPriceTypeEntry implements HasLegacyId {
@@ -54,7 +54,7 @@ public class ComposterConfig {
@Expose
@ConfigOption(name = "Retrieve From", desc = "Change where to retrieve the materials from in the composter overlay: The Bazaar or Sacks.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public RetrieveFromEntry retrieveFrom = RetrieveFromEntry.SACKS;
public enum RetrieveFromEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/CropMilestonesConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/CropMilestonesConfig.java
index 8f2d5a450..9d15d9455 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/CropMilestonesConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/CropMilestonesConfig.java
@@ -47,7 +47,7 @@ public class CropMilestonesConfig {
@ConfigOption(
name = "Time Format",
desc = "Change the highest time unit to show (1h30m vs 90min)")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<TimeFormatEntry> highestTimeFormat = Property.of(YEAR);
public enum TimeFormatEntry implements HasLegacyId {
@@ -95,7 +95,7 @@ public class CropMilestonesConfig {
desc = "Drag text to change the appearance of the overlay.\n" +
"Hold a farming tool to show the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<MilestoneTextEntry> text = new ArrayList<>(Arrays.asList(
TITLE,
MILESTONE_TIER,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/MushroomPetPerkConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/MushroomPetPerkConfig.java
index 2cd4cd911..f0909ee71 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/MushroomPetPerkConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/MushroomPetPerkConfig.java
@@ -33,7 +33,7 @@ public class MushroomPetPerkConfig {
desc = "Drag text to change the appearance of the overlay.\n" +
"Hold a farming tool to show the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<MushroomTextEntry> text = new ArrayList<>(Arrays.asList(
TITLE,
MUSHROOM_TIER,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java
index d1609e322..dac57b6a4 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java
@@ -22,7 +22,7 @@ public class NextConfig {
// TODO moulconfig runnable support
@Expose
@ConfigOption(name = "Sort Type", desc = "Sort the crops by either garden or SkyBlock EXP.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public BestTypeEntry bestType = BestTypeEntry.GARDEN_EXP;
public enum BestTypeEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestSpawnConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestSpawnConfig.java
index a12f885c3..ff78fe5e8 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestSpawnConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestSpawnConfig.java
@@ -13,7 +13,7 @@ public class PestSpawnConfig {
@ConfigOption(
name = "Chat Message Format",
desc = "Change how the pest spawn chat message should be formatted.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public ChatMessageFormatEntry chatMessageFormat = ChatMessageFormatEntry.HYPIXEL;
public enum ChatMessageFormatEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/DropsStatisticsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/DropsStatisticsConfig.java
index c9be39d54..df0615632 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/DropsStatisticsConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/DropsStatisticsConfig.java
@@ -41,7 +41,7 @@ public class DropsStatisticsConfig {
name = "Text Format",
desc = "Drag text to change the appearance of the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<DropsStatisticsTextEntry> textFormat = new ArrayList<>(Arrays.asList(
TITLE,
TOTAL_VISITORS,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java
index 92ab5bb16..b3f9ab1d8 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java
@@ -45,7 +45,7 @@ public class VisitorConfig {
@Expose
@ConfigOption(name = "Highlight Status", desc = "Highlight the status for visitors with a text above or with color.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public HighlightMode highlightStatus = HighlightMode.BOTH;
public enum HighlightMode implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java
index c9f3e1bd2..d3924f458 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/ChestValueConfig.java
@@ -55,7 +55,7 @@ public class ChestValueConfig {
@Expose
@ConfigOption(name = "Sorting Type", desc = "Price sorting type.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public SortingTypeEntry sortingType = SortingTypeEntry.DESCENDING;
public enum SortingTypeEntry implements HasLegacyId {
@@ -88,7 +88,7 @@ public class ChestValueConfig {
@Expose
@ConfigOption(name = "Value formatting Type", desc = "Format of the price.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public NumberFormatEntry formatType = NumberFormatEntry.SHORT;
public enum NumberFormatEntry implements HasLegacyId {
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 ab7c71831..9e7a88e9d 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
@@ -61,7 +61,7 @@ public class InventoryConfig {
name = "Item Number",
desc = "Showing the item number as a stack size for these items."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<ItemNumberEntry> itemNumberAsStackSize = new ArrayList<>(Arrays.asList(
NEW_YEAR_CAKE,
RANCHERS_BOOTS_SPEED,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/SackDisplayConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/SackDisplayConfig.java
index 6f9996a97..116c0af43 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/SackDisplayConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/SackDisplayConfig.java
@@ -32,7 +32,7 @@ public class SackDisplayConfig {
"§eDefault: §72,240/2.2k\n" +
"§eFormatted: §72.2k/2.2k\n" +
"§eUnformatted: §72,240/2,200")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public NumberFormatEntry numberFormat = NumberFormatEntry.FORMATTED;
public enum NumberFormatEntry implements HasLegacyId {
@@ -74,7 +74,7 @@ public class SackDisplayConfig {
@Expose
@ConfigOption(name = "Sorting Type", desc = "Sorting type of items in sack.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public SortingTypeEntry sortingType = SortingTypeEntry.DESC_STORED;
public enum SortingTypeEntry implements HasLegacyId {
@@ -131,7 +131,7 @@ public class SackDisplayConfig {
@ConfigOption(name = "Price Format", desc = "Format of the price displayed.\n" +
"§eFormatted: §7(12k)\n" +
"§eUnformatted: §7(12,421)")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public PriceFormatEntry priceFormat = PriceFormatEntry.FORMATTED;
public enum PriceFormatEntry implements HasLegacyId {
@@ -164,7 +164,7 @@ public class SackDisplayConfig {
@Expose
@ConfigOption(name = "Show Price From", desc = "Show price from Bazaar or NPC.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public PriceFrom priceFrom = PriceFrom.BAZAAR;
public enum PriceFrom implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/itemability/FireVeilWandConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/itemability/FireVeilWandConfig.java
index 9cd157a4f..9dee074d6 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/itemability/FireVeilWandConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/itemability/FireVeilWandConfig.java
@@ -9,7 +9,7 @@ import io.github.moulberry.moulconfig.annotations.ConfigOption;
public class FireVeilWandConfig {
@Expose
@ConfigOption(name = "Fire Veil Design", desc = "Changes the flame particles of the Fire Veil Wand ability.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public DisplayEntry display = DisplayEntry.PARTICLES;
public enum DisplayEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/markedplayer/MarkedPlayerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/markedplayer/MarkedPlayerConfig.java
index 3c02437e3..4b665d6a7 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/markedplayer/MarkedPlayerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/markedplayer/MarkedPlayerConfig.java
@@ -21,7 +21,7 @@ public class MarkedPlayerConfig {
@Expose
@ConfigOption(name = "Mark Own Name", desc = "Mark own player name.")
- @ConfigEditorBoolean()
+ @ConfigEditorBoolean
public Property<Boolean> markOwnName = Property.of(false);
@ConfigOption(name = "Marked Chat Color", desc = "Marked Chat Color. §eIf Chroma is gray, enable Chroma in Chroma settings.")
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/mining/PowderTrackerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/mining/PowderTrackerConfig.java
index 660c9493c..12069824d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/mining/PowderTrackerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/mining/PowderTrackerConfig.java
@@ -54,7 +54,7 @@ public class PowderTrackerConfig {
name = "Text Format",
desc = "Drag text to change the appearance of the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public Property<List<PowderDisplayEntry>> textFormat = Property.of(new ArrayList<>(Arrays.asList(
TOTAL_CHESTS,
DOUBLE_POWDER,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java
index aa7a1d4b7..b40bb76f5 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/DiscordRPCConfig.java
@@ -31,12 +31,12 @@ public class DiscordRPCConfig {
@Expose
@ConfigOption(name = "First Line", desc = "Decide what to show in the first line.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<LineEntry> firstLine = Property.of(NOTHING);
@Expose
@ConfigOption(name = "Second Line", desc = "Decide what to show in the second line.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<LineEntry> secondLine = Property.of(NOTHING);
@Expose
@@ -46,7 +46,7 @@ public class DiscordRPCConfig {
@Expose
@ConfigOption(name = "Dynamic Priority", desc = "Disable certain dynamic statuses, or change the priority in case two are triggered at the same time (higher up means higher priority).")
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<PriorityEntry> autoPriority = new ArrayList<>(Arrays.asList(
CROP_MILESTONES,
SLAYER,
@@ -89,7 +89,7 @@ public class DiscordRPCConfig {
@Expose
@ConfigOption(name = "Dynamic Fallback", desc = "What to show when none of your \"Dynamic Priority\" statuses are active.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<LineEntry> auto = Property.of(NOTHING);
public enum LineEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideArmorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideArmorConfig.java
index cc1939fbf..d6380100a 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideArmorConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/HideArmorConfig.java
@@ -10,7 +10,7 @@ public class HideArmorConfig {
@Expose
@ConfigOption(name = "Mode", desc = "Hide the armor of players.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public ModeEntry mode = ModeEntry.OFF;
public enum ModeEntry implements HasLegacyId {
@@ -44,7 +44,7 @@ public class HideArmorConfig {
@Expose
@ConfigOption(name = "Only Helmet", desc = "Only hide the helmet.")
- @ConfigEditorBoolean()
+ @ConfigEditorBoolean
public Boolean onlyHelmet = false;
}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrackerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrackerConfig.java
index 643ce637b..50e990700 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrackerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrackerConfig.java
@@ -20,7 +20,7 @@ public class TrackerConfig {
@Expose
@ConfigOption(name = "Show Price From", desc = "Show price from Bazaar or NPC.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public PriceFromEntry priceFrom = PriceFromEntry.SELL_OFFER;
public enum PriceFromEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrevorTheTrapperConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrevorTheTrapperConfig.java
index 025125c4f..db5e8a93e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrevorTheTrapperConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/TrevorTheTrapperConfig.java
@@ -52,7 +52,7 @@ public class TrevorTheTrapperConfig {
name = "Text Format",
desc = "Drag text to change the appearance of the overlay."
)
- @ConfigEditorDraggableList()
+ @ConfigEditorDraggableList
public List<TrackerEntry> textFormat = new ArrayList<>(Arrays.asList(
TITLE,
QUESTS_STARTED,
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java
index c677fb1db..c1fb496a4 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java
@@ -10,7 +10,7 @@ public class AdvancedPlayerListConfig {
@Expose
@ConfigOption(name = "Player Sort", desc = "Change the sort order of player names in the tab list.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public PlayerSortEntry playerSortOrder = PlayerSortEntry.RANK;
public enum PlayerSortEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/rift/motes/RiftInventoryValueConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/rift/motes/RiftInventoryValueConfig.java
index 4b4fef21d..9af54e192 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/rift/motes/RiftInventoryValueConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/rift/motes/RiftInventoryValueConfig.java
@@ -18,7 +18,7 @@ public class RiftInventoryValueConfig {
@Expose
@ConfigOption(name = "Number Format Type", desc = "Short: 1.2M\n" +
"Long: 1,200,000")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public NumberFormatEntry formatType = NumberFormatEntry.SHORT;
public enum NumberFormatEntry implements HasLegacyId {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/slayer/blaze/BlazeHellionConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/slayer/blaze/BlazeHellionConfig.java
index 08153da05..b81d84ec8 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/slayer/blaze/BlazeHellionConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/slayer/blaze/BlazeHellionConfig.java
@@ -29,7 +29,7 @@ public class BlazeHellionConfig {
@Expose
@ConfigOption(name = "First Dagger", desc = "Select the first, left sided dagger for the display.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public FirstDaggerEntry firstDagger = FirstDaggerEntry.SPIRIT_OR_CRYSTAL;
public enum FirstDaggerEntry implements HasLegacyId {