diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-22 09:33:15 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-06-22 09:33:15 +0200 |
commit | 8f3314c9397a62085941ece6d9fe2114f5338889 (patch) | |
tree | 298798c38d4875893787446b3af351660b4d3436 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | c52a71ee63c633d17d7a935c0aa92ddda904c750 (diff) | |
download | skyhanni-8f3314c9397a62085941ece6d9fe2114f5338889.tar.gz skyhanni-8f3314c9397a62085941ece6d9fe2114f5338889.tar.bz2 skyhanni-8f3314c9397a62085941ece6d9fe2114f5338889.zip |
enum is singular
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/EventsConfig.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/EventsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/EventsConfig.java index 904e8028f..f2fd7a85a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/EventsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/gui/customscoreboard/EventsConfig.java @@ -1,6 +1,6 @@ package at.hannibal2.skyhanni.config.features.gui.customscoreboard; -import at.hannibal2.skyhanni.features.gui.customscoreboard.ScoreboardEvents; +import at.hannibal2.skyhanni.features.gui.customscoreboard.ScoreboardEvent; import com.google.gson.annotations.Expose; import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean; import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorDraggableList; @@ -17,7 +17,7 @@ public class EventsConfig { desc = "Drag your list to select the priority of each event." ) @ConfigEditorDraggableList() - public List<ScoreboardEvents> eventEntries = new ArrayList<>(ScoreboardEvents.defaultOption); + public List<ScoreboardEvent> eventEntries = new ArrayList<>(ScoreboardEvent.defaultOption); @Expose @ConfigOption(name = "Show all active events", desc = "Show all active events in the scoreboard instead of the one with the highest priority.") |