diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-18 12:37:25 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-18 12:37:25 +0100 |
| commit | 87730311ae08afb7b4f36763759cb180e3abdbfd (patch) | |
| tree | 08c14bf4151fc7b57e270c28c27387a67a308961 /src/main/java/at | |
| parent | cdb0525f4818675ba3c7b83591b88c59b9dde913 (diff) | |
| download | SkyHanni-87730311ae08afb7b4f36763759cb180e3abdbfd.tar.gz SkyHanni-87730311ae08afb7b4f36763759cb180e3abdbfd.tar.bz2 SkyHanni-87730311ae08afb7b4f36763759cb180e3abdbfd.zip | |
Fixed sacks display in crimson isle reputation helper
Diffstat (limited to 'src/main/java/at')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt index da2a7965f..1e03f67d8 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt @@ -244,7 +244,7 @@ class DailyQuestHelper(val reputationHelper: CrimsonIsleReputationHelper) { } val sacksText = if (quest is FetchQuest && quest.state != QuestState.COLLECTED) { - val name = quest.itemName.uppercase() + val name = quest.itemName.uppercase().replace(" ", "_") val amount = sacksCache.getOrDefault(name, 0) val needAmount = quest.needAmount val amountFormat = LorenzUtils.formatInteger(amount) |
