diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-01 10:44:08 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-01 10:44:08 +0200 |
commit | bf3774251441a2e31b9a49df5b3a8e8c6388b413 (patch) | |
tree | c10252e29059991ef7b7061836352726ab1625ae /src/main | |
parent | ed466608ab020486c6b942bad4cbe0a7f6da3c2f (diff) | |
download | skyhanni-bf3774251441a2e31b9a49df5b3a8e8c6388b413.tar.gz skyhanni-bf3774251441a2e31b9a49df5b3a8e8c6388b413.tar.bz2 skyhanni-bf3774251441a2e31b9a49df5b3a8e8c6388b413.zip |
Fixed the bingo card viewer cant read the mushroom goal.
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/CollectionStep.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/CollectionStep.kt b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/CollectionStep.kt index 5cf45a49e..4e08b2ba4 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/CollectionStep.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bingo/nextstep/CollectionStep.kt @@ -5,5 +5,5 @@ import at.hannibal2.skyhanni.utils.NumberUtil class CollectionStep(collectionName: String, amountNeeded: Int) : ProgressionStep(NumberUtil.format(amountNeeded) + " $collectionName Collection", amountNeeded.toLong()) { - val internalName by lazy { NEUInternalName.fromItemName(collectionName) } + val internalName by lazy { NEUInternalName.fromItemName(if (collectionName == "Mushroom") "Red Mushroom" else collectionName) } }
\ No newline at end of file |