aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/misc
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-03-15 23:25:29 +0100
committerGitHub <noreply@github.com>2024-03-15 23:25:29 +0100
commit95cb1d7c7be44a6b7f9611e6420ff6b50146a830 (patch)
tree7302978e3e3f5195376e49d726167916be68a434 /src/main/java/at/hannibal2/skyhanni/features/misc
parent951bb6a26559b6db288a68a00f83d9ea45b0c3d8 (diff)
downloadskyhanni-95cb1d7c7be44a6b7f9611e6420ff6b50146a830.tar.gz
skyhanni-95cb1d7c7be44a6b7f9611e6420ff6b50146a830.tar.bz2
skyhanni-95cb1d7c7be44a6b7f9611e6420ff6b50146a830.zip
Backend: Storage Config Moving (#1171)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt
index 60c28e1b6..73aee171e 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt
@@ -1,7 +1,7 @@
package at.hannibal2.skyhanni.features.misc.trevor
import at.hannibal2.skyhanni.SkyHanniMod
-import at.hannibal2.skyhanni.config.Storage
+import at.hannibal2.skyhanni.config.storage.ProfileSpecificStorage
import at.hannibal2.skyhanni.data.ProfileStorageData
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
@@ -113,7 +113,7 @@ object TrevorTracker {
display = formatDisplay(drawTrapperDisplay(storage))
}
- private fun drawTrapperDisplay(storage: Storage.ProfileSpecific.TrapperData) = buildList<List<Any>> {
+ private fun drawTrapperDisplay(storage: ProfileSpecificStorage.TrapperData) = buildList<List<Any>> {
addAsSingletonList("§b§lTrevor Data Tracker")
addAsSingletonList("§b${storage.questsDone.addSeparators()} §9Quests Started")
addAsSingletonList("§b${storage.peltsGained.addSeparators()} §5Total Pelts Gained")