From 95cb1d7c7be44a6b7f9611e6420ff6b50146a830 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Fri, 15 Mar 2024 23:25:29 +0100 Subject: Backend: Storage Config Moving (#1171) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../java/at/hannibal2/skyhanni/features/misc/trevor/TrevorTracker.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc') 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> { + private fun drawTrapperDisplay(storage: ProfileSpecificStorage.TrapperData) = buildList> { addAsSingletonList("§b§lTrevor Data Tracker") addAsSingletonList("§b${storage.questsDone.addSeparators()} §9Quests Started") addAsSingletonList("§b${storage.peltsGained.addSeparators()} §5Total Pelts Gained") -- cgit