From 637fd3bc9fe05ade7a2bb609a429b20b1e0dd1e9 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 12 Jun 2024 07:28:45 -0700 Subject: Fix: FF rework (#1861) Co-authored-by: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> --- .../skyhanni/config/storage/ProfileSpecificStorage.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (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 e037b80a6..fe0cd58fb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java +++ b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java @@ -376,16 +376,19 @@ public class ProfileSpecificStorage { public Map outdatedItems = new HashMap<>(); @Expose - public int anitaUpgrade = -1; + public int farmingLevel = -1; @Expose - public int farmingStrength = -1; + public double bestiary = -1.0; @Expose - public int farmingLevel = -1; + public int plotsUnlocked = -1; @Expose - public int plotsUnlocked = -1; + public int anitaUpgrade = -1; + + @Expose + public int farmingStrength = -1; @Expose public SimpleTimeMark cakeExpiring = null; -- cgit