diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-26 12:30:02 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-26 12:30:02 +0200 |
commit | b6f9dc6caa77ef50e086fd50c6c32ebc69288eb8 (patch) | |
tree | 1532b36ad847210aae4968433cacbbe9f036f664 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 2c061eb7fc7c6f8f4e5889504e6b390c71e6a269 (diff) | |
download | skyhanni-b6f9dc6caa77ef50e086fd50c6c32ebc69288eb8.tar.gz skyhanni-b6f9dc6caa77ef50e086fd50c6c32ebc69288eb8.tar.bz2 skyhanni-b6f9dc6caa77ef50e086fd50c6c32ebc69288eb8.zip |
code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java index 1f6494fd7..8d3c4a56d 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/InventoryConfig.java @@ -160,15 +160,20 @@ public class InventoryConfig { public boolean enabled = true; @Expose - @ConfigOption(name = "Highlight Full", desc = "Highlight items that are full in red.\n§eDo not need the option above to be enabled.") + @ConfigOption( + name = "Highlight Full", + desc = "Highlight items that are full in red.\n" + + "§eDoes not need the option above to be enabled." + ) @ConfigEditorBoolean + @FeatureToggle public boolean highlightFull = true; @Expose @ConfigOption(name = "Number Format", desc = "Either show Default, Formatted or Unformatted numbers.\n" + - "§eDefault: §72,240/2.2k\n" + - "§eFormatted: §72.2k/2.2k\n" + - "§eUnformatted: §72,240/2,200") + "§eDefault: §72,240/2.2k\n" + + "§eFormatted: §72.2k/2.2k\n" + + "§eUnformatted: §72,240/2,200") @ConfigEditorDropdown(values = {"Default", "Formatted", "Unformatted"}) public int numberFormat = 1; |