Skip to content

Commit

Permalink
fix lowercase stats
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 committed Jan 11, 2025
1 parent de86e01 commit 26a80d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/at/hannibal2/skyhanni/utils/ItemUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ object ItemUtils {
for ((internalName, rawStats) in allRawStats) {
val stats = mutableMapOf<SkyblockStat, Int>()
for ((rawStat, value) in rawStats) {
val stat = SkyblockStat.getValueOrNull(rawStat)
val stat = SkyblockStat.getValueOrNull(rawStat.uppercase())
if (stat == null) {
unknownStats["`$rawStat`"] = "on '$internalName'"
} else {
Expand Down

0 comments on commit 26a80d6

Please sign in to comment.