summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/gui
diff options
context:
space:
mode:
authorJordan <77755681+Jordyrat@users.noreply.github.com>2024-09-08 08:21:14 +0100
committerGitHub <noreply@github.com>2024-09-08 09:21:14 +0200
commit9352ace3e97c92645b176f88b6cef6e638121b95 (patch)
tree803cbb085fc1b9e4877a8e16c6db697d10e6d90b /src/main/java/at/hannibal2/skyhanni/features/gui
parent5ac091a11d558717eb42106bcad35d23653dab5d (diff)
downloadskyhanni-9352ace3e97c92645b176f88b6cef6e638121b95.tar.gz
skyhanni-9352ace3e97c92645b176f88b6cef6e638121b95.tar.bz2
skyhanni-9352ace3e97c92645b176f88b6cef6e638121b95.zip
Improvement: Powder Tracker revamped (#2394)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/gui')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt
index a58a7efc4..369fca62e 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/gui/customscoreboard/ScoreboardElements.kt
@@ -731,7 +731,7 @@ private fun getQuiverShowWhen(): Boolean {
}
private fun getPowderDisplayPair() = buildList {
- val powderTypes = HotmAPI.Powder.values()
+ val powderTypes = HotmAPI.PowderType.values()
if (informationFilteringConfig.hideEmptyLines && powderTypes.all { it.getTotal() == 0L }) {
return listOf("<hidden>" to HorizontalAlignment.LEFT)
}