diff options
author | NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> | 2022-12-27 02:06:02 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-26 16:06:02 +0100 |
commit | 1ce926e405392b03eb6c6afd6f7cc7996f461ce7 (patch) | |
tree | 124dbc07bd61341b63813b46ccf7f50605bce718 | |
parent | 0cba03b165fc66cf2c56e1a5669024f2976d2f9c (diff) | |
download | NotEnoughUpdates-1ce926e405392b03eb6c6afd6f7cc7996f461ce7.tar.gz NotEnoughUpdates-1ce926e405392b03eb6c6afd6f7cc7996f461ce7.tar.bz2 NotEnoughUpdates-1ce926e405392b03eb6c6afd6f7cc7996f461ce7.zip |
set combat overlay to be off by default (#523)
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java index db0a0e94..f9dbe69e 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/options/seperateSections/SkillOverlays.java @@ -24,7 +24,6 @@ import io.github.moulberry.notenoughupdates.core.config.Position; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigAccordionId; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorAccordion; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorBoolean; -import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorButton; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorDraggableList; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorDropdown; import io.github.moulberry.notenoughupdates.core.config.annotations.ConfigEditorFSR; @@ -303,7 +302,7 @@ public class SkillOverlays { ) @ConfigEditorBoolean @ConfigAccordionId(id = 4) - public boolean combatSkillOverlay = true; + public boolean combatSkillOverlay = false; @Expose @ConfigOption( |