aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/EnchantParsingConfig.java12
2 files changed, 7 insertions, 7 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java
index 923e2a5e5..2aca74f77 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java
@@ -35,7 +35,7 @@ public class TotemOfCorruptionConfig {
@Expose
@ConfigOption(name = "Show Effective Area", desc = "Show the effective area (16 blocks) of the Totem of Corruption.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public OutlineType outlineType = OutlineType.FILLED;
public enum OutlineType {
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/EnchantParsingConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/EnchantParsingConfig.java
index bada2edee..a7571291a 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/EnchantParsingConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/EnchantParsingConfig.java
@@ -18,7 +18,7 @@ public class EnchantParsingConfig {
@Expose
@ConfigOption(name = "Format", desc = "The way the enchants are formatted in the tooltip.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<EnchantFormat> format = Property.of(EnchantFormat.NORMAL);
public enum EnchantFormat {
@@ -40,27 +40,27 @@ public class EnchantParsingConfig {
@Expose
@ConfigOption(name = "Perfect Enchantment Color", desc = "The color an enchantment will be at max level.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<LorenzColor> perfectEnchantColor = Property.of(LorenzColor.CHROMA);
@Expose
@ConfigOption(name = "Great Enchantment Color", desc = "The color an enchantment will be at a great level.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<LorenzColor> greatEnchantColor = Property.of(LorenzColor.GOLD);
@Expose
@ConfigOption(name = "Good Enchantment Color", desc = "The color an enchantment will be at a good level.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<LorenzColor> goodEnchantColor = Property.of(LorenzColor.BLUE);
@Expose
@ConfigOption(name = "Poor Enchantment Color", desc = "The color an enchantment will be at a poor level.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<LorenzColor> poorEnchantColor = Property.of(LorenzColor.GRAY);
@Expose
@ConfigOption(name = "Comma Format", desc = "Change the format of the comma after each enchant.")
- @ConfigEditorDropdown()
+ @ConfigEditorDropdown
public Property<CommaFormat> commaFormat = Property.of(CommaFormat.COPY_ENCHANT);
public enum CommaFormat {