summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorThunderblade73 <85900443+Thunderblade73@users.noreply.github.com>2024-06-08 20:53:23 +0200
committerGitHub <noreply@github.com>2024-06-08 20:53:23 +0200
commitd5667f8915e2a48b11f165a48a5c0b1acace92ff (patch)
tree7a72e331b0e115f86e024fe676f36ea4187c55a4 /src/main/java/at/hannibal2/skyhanni/config
parent5c65321bfcee1f55e7e1207b9a551bb73dc3e375 (diff)
downloadskyhanni-d5667f8915e2a48b11f165a48a5c0b1acace92ff.tar.gz
skyhanni-d5667f8915e2a48b11f165a48a5c0b1acace92ff.tar.bz2
skyhanni-d5667f8915e2a48b11f165a48a5c0b1acace92ff.zip
Fix: FF cake time (#2034)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java3
1 files changed, 2 insertions, 1 deletions
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<CropType, Boolean> carrolyn = new HashMap<>();