aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/QuestLoader.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/QuestLoader.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/QuestLoader.kt
index 65bbce484..2596ef124 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/QuestLoader.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/QuestLoader.kt
@@ -139,7 +139,7 @@ class QuestLoader(private val dailyQuestHelper: DailyQuestHelper) {
}
fun loadConfig(storage: Storage.ProfileSpecific.CrimsonIsleStorage) {
- for (text in storage.quests) {
+ for (text in storage.quests.toList()) {
val split = text.split(":")
val name = split[0]
val state = QuestState.valueOf(split[1])