diff options
| author | Ascynx <78341107+Ascynx@users.noreply.github.com> | 2022-10-22 04:33:57 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-22 02:33:57 +0000 |
| commit | a2e1983b47392d7724df78f842ef81bfb6f67d60 (patch) | |
| tree | 2b21fd64c3093794f82f7414a47dd5deecd42858 /src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java | |
| parent | e4d4a7c4179d2359dcdadcc49b38470c9db873e3 (diff) | |
| download | notenoughupdates-a2e1983b47392d7724df78f842ef81bfb6f67d60.tar.gz notenoughupdates-a2e1983b47392d7724df78f842ef81bfb6f67d60.tar.bz2 notenoughupdates-a2e1983b47392d7724df78f842ef81bfb6f67d60.zip | |
Merge pull request #310
* neuec tooltip cache
* forgor to remove (W.I.P)
* forgot to make it on by default
* Format and comment change
* Merge branch 'NotEnoughUpdates:master' into enchant-optimisation
* Merge remote-tracking branch 'origin/enchant-optimisation' into encha…
* Merge branch 'NotEnoughUpdates:master' into enchant-optimisation
* bing bong fps gon
* Merge branch 'NotEnoughUpdates:master' into enchant-optimisation
* remove max book blurb because in theory it will be added to the repo
* Merge branch 'master' into enchant-optimisation
* Merge branch 'master' into enchant-optimisation
* Fixed issues
* Moved Custom enchant colour stuff to it's own accordion
* Merge branch 'NotEnoughUpdates:master' into enchant-optimisation
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java index ededb5da..afeec514 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/Misc.java @@ -141,14 +141,23 @@ public class Misc { @ConfigEditorButton(runnableId = 13, buttonText = "Open") public boolean openPV = true; - @Expose @ConfigOption( + name = "Custom Enchant Colours", + desc = "" + ) + @ConfigEditorAccordion( + id = 1 + ) + public boolean neuEnchantsAccordion = true; + @Expose + @ConfigOption( name = "Edit Enchant Colours", desc = "Change the colours of certain SkyBlock enchants (/neuec)", searchTags = "color" ) @ConfigEditorButton(runnableId = 8, buttonText = "Open") + @ConfigAccordionId(id = 1) public boolean editEnchantColoursButton = true; @Expose @@ -162,10 +171,20 @@ public class Misc { maxValue = 500, minStep = 10 ) + @ConfigAccordionId(id = 1) public int chromaSpeed = 100; @Expose @ConfigOption( + name = "Cache Tooltip Enchants", + desc = "Caches item enchants in tooltip to only use the neuec config once per item lookup.\nNOTE: It doesn't work on items without a uuid" + ) + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) + public boolean cacheItemEnchant = true; + + @Expose + @ConfigOption( name = "Disable Skull retexturing", desc = "Disables the skull retexturing." ) |
