diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-27 14:19:53 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-27 14:19:53 +0200 |
commit | ed7fe7c7f996d3cbf61f062b849e79ed32c2fdf9 (patch) | |
tree | 095b6335d4e53ba19c13dd96aa91bec8b6057790 /src/main/java/at/hannibal2 | |
parent | 1b1600b87b49da93bc33be21935005ba21a4995f (diff) | |
download | skyhanni-ed7fe7c7f996d3cbf61f062b849e79ed32c2fdf9.tar.gz skyhanni-ed7fe7c7f996d3cbf61f062b849e79ed32c2fdf9.tar.bz2 skyhanni-ed7fe7c7f996d3cbf61f062b849e79ed32c2fdf9.zip |
code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/fishing/TotemOfCorruptionConfig.java | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/EnchantParsingConfig.java | 12 |
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 { |