From ed7fe7c7f996d3cbf61f062b849e79ed32c2fdf9 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 27 Apr 2024 14:19:53 +0200 Subject: code cleanup --- .../config/features/fishing/TotemOfCorruptionConfig.java | 2 +- .../config/features/inventory/EnchantParsingConfig.java | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src') 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 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 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 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 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 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 = Property.of(CommaFormat.COPY_ENCHANT); public enum CommaFormat { -- cgit