diff options
| author | BuildTools <james.jenour@protonmail.com> | 2021-02-10 20:11:57 +0800 |
|---|---|---|
| committer | BuildTools <james.jenour@protonmail.com> | 2021-02-10 20:11:57 +0800 |
| commit | 52c6dabe58005aa5a7fc5809512bd8cf4ad4f97f (patch) | |
| tree | 9b71dd6e3e1478faceadf23dcfb359133cc7fe4e /src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java | |
| parent | a2292c332c22646bd177eaf3123ce31a74991e36 (diff) | |
| download | notenoughupdates-52c6dabe58005aa5a7fc5809512bd8cf4ad4f97f.tar.gz notenoughupdates-52c6dabe58005aa5a7fc5809512bd8cf4ad4f97f.tar.bz2 notenoughupdates-52c6dabe58005aa5a7fc5809512bd8cf4ad4f97f.zip | |
PRE18.1
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java | 65 |
1 files changed, 50 insertions, 15 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java index 045b4cdb..c8625088 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/NEUConfig.java @@ -203,6 +203,21 @@ public class NEUConfig extends Config { @Expose @Category( + name = "Smooth AOTE", + desc = "Smooth AOTE" + ) + public SmoothAOTE smoothAOTE = new SmoothAOTE(); + + + @Expose + @Category( + name = "AH Search GUI", + desc = "AH Search GUI" + ) + public AuctionHouseSearch auctionHouseSearch = new AuctionHouseSearch(); + + @Expose + @Category( name = "Dungeon Block Overlay", desc = "Dungeon Block Overlay" ) @@ -217,13 +232,6 @@ public class NEUConfig extends Config { @Expose @Category( - name = "Smooth AOTE", - desc = "Smooth AOTE" - ) - public SmoothAOTE smoothAOTE = new SmoothAOTE(); - - @Expose - @Category( name = "Custom Rod Colours", desc = "Custom Rod Colours" ) @@ -260,14 +268,6 @@ public class NEUConfig extends Config { @Expose @ConfigOption( - name = "Private Island Fly Fix", - desc = "Fix flying being delaying on private islands" - ) - @ConfigEditorBoolean - public boolean flyFix = true; - - @Expose - @ConfigOption( name = "Hide Potion Effects", desc = "Hide the potion effects inside your inventory while on skyblock" ) @@ -1154,6 +1154,41 @@ public class NEUConfig extends Config { public boolean showOwnHeadAsMarker = false; } + public static class AuctionHouseSearch { + @Expose + @ConfigOption( + name = "Enable Search GUI", + desc = "Use the advanced search GUI with autocomplete and history instead of the normal sign GUI" + ) + @ConfigEditorBoolean + public boolean enableSearchOverlay = true; + + @Expose + @ConfigOption( + name = "Keep Previous Search", + desc = "Don't clear the search bar after closing the GUI" + ) + @ConfigEditorBoolean + public boolean keepPreviousSearch = false; + + @Expose + @ConfigOption( + name = "Past Searches", + desc = "Show past searches below the autocomplete box" + ) + @ConfigEditorBoolean + public boolean showPastSearches = true; + + @Expose + @ConfigOption( + name = "ESC to Full Close", + desc = "Make pressing ESCAPE close the search GUI without opening up the AH again\n" + + "ENTER can still be used to search" + ) + @ConfigEditorBoolean + public boolean escFullClose = true; + } + public static class DungeonBlock { @Expose @ConfigOption( |
