From d5667f8915e2a48b11f165a48a5c0b1acace92ff Mon Sep 17 00:00:00 2001 From: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Date: Sat, 8 Jun 2024 20:53:23 +0200 Subject: Fix: FF cake time (#2034) --- .../at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java index 00ce6c39c..bc25da446 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java +++ b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java @@ -37,6 +37,7 @@ import at.hannibal2.skyhanni.features.skillprogress.SkillType; import at.hannibal2.skyhanni.features.slayer.SlayerProfitTracker; import at.hannibal2.skyhanni.utils.LorenzVec; import at.hannibal2.skyhanni.utils.NEUInternalName; +import at.hannibal2.skyhanni.utils.SimpleTimeMark; import com.google.gson.annotations.Expose; import net.minecraft.item.ItemStack; import org.jetbrains.annotations.Nullable; @@ -377,7 +378,7 @@ public class ProfileSpecificStorage { public int plotsUnlocked = -1; @Expose - public long cakeExpiring = -1L; + public SimpleTimeMark cakeExpiring = null; @Expose public Map carrolyn = new HashMap<>(); -- cgit