diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-05 12:40:57 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-05 12:40:57 +0100 |
commit | 7721be72deb7acb5e3f133482a51e1286f875c47 (patch) | |
tree | 031c121d46a3fa085046ff4396b377a3f6d42bd1 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 5f6cbe465b0914ac006bb7eac6975205ad4fb29a (diff) | |
download | skyhanni-7721be72deb7acb5e3f133482a51e1286f875c47.tar.gz skyhanni-7721be72deb7acb5e3f133482a51e1286f875c47.tar.bz2 skyhanni-7721be72deb7acb5e3f133482a51e1286f875c47.zip |
Resetting parts of the inventory for users with 7-month-old SkyHanni versions that want to migrate into the present.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/OldHidden.java | 118 |
1 files changed, 0 insertions, 118 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/OldHidden.java b/src/main/java/at/hannibal2/skyhanni/config/features/OldHidden.java deleted file mode 100644 index a2694210f..000000000 --- a/src/main/java/at/hannibal2/skyhanni/config/features/OldHidden.java +++ /dev/null @@ -1,118 +0,0 @@ -package at.hannibal2.skyhanni.config.features; - -import at.hannibal2.skyhanni.data.model.ComposterUpgrade; -import at.hannibal2.skyhanni.features.garden.CropAccessory; -import at.hannibal2.skyhanni.features.garden.CropType; -import at.hannibal2.skyhanni.features.garden.farming.FarmingArmorDrops; -import at.hannibal2.skyhanni.features.garden.visitor.VisitorReward; -import com.google.gson.annotations.Expose; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -public class OldHidden { - - @Expose - public String currentPet = ""; - - @Expose - public Map<String, Long> minionLastClick = new HashMap<>(); - - @Expose - public Map<String, String> minionName = new HashMap<>(); - - @Expose - public List<String> crimsonIsleQuests = new ArrayList<>(); - - @Expose - public List<String> crimsonIsleMiniBossesDoneToday = new ArrayList<>(); - - @Expose - public List<String> crimsonIsleKuudraTiersDone = new ArrayList<>(); - - @Expose - public Map<CropType, Long> gardenCropCounter = new HashMap<>(); - - @Expose - public Map<CropType, Integer> gardenCropUpgrades = new HashMap<>(); - - @Expose - public Map<CropType, Integer> gardenCropsPerSecond = new HashMap<>(); - - @Expose - public Map<CropType, Double> gardenLatestBlocksPerSecond = new HashMap<>(); - - @Expose - public Map<CropType, Double> gardenLatestTrueFarmingFortune = new HashMap<>(); - - @Expose - public int gardenExp = -1; - - @Expose - public CropAccessory savedCropAccessory = null; - - @Expose - public Map<String, Integer> gardenDicerRngDrops = new HashMap<>(); - - @Expose - public long informedAboutLowMatter = 0; - - @Expose - public long informedAboutLowFuel = 0; - - @Expose - public long visitorInterval = 15 * 60_000L; - - @Expose - public long nextSixthVisitorArrival = 0; - - @Expose - public Map<Long, List<CropType>> gardenJacobFarmingContestTimes = new HashMap<>(); - - @Expose - public Map<FarmingArmorDrops.ArmorDropType, Integer> gardenFarmingArmorDrops = new HashMap<>(); - - @Expose - public Map<ComposterUpgrade, Integer> gardenComposterUpgrades = new HashMap<>(); - - @Expose - public Map<CropType, Boolean> gardenToolHasBountiful = new HashMap<>(); - - @Expose - public String gardenComposterCurrentOrganicMatterItem = ""; - - @Expose - public String gardenComposterCurrentFuelItem = ""; - - - @Expose - public VisitorDrops visitorDrops = new VisitorDrops(); - - public static class VisitorDrops { - @Expose - public int acceptedVisitors = 0; - - @Expose - public int deniedVisitors = 0; - - @Expose - public List<Long> visitorRarities = new ArrayList<>(); - - @Expose - public int copper = 0; - - @Expose - public long farmingExp = 0; - - @Expose - public long coinsSpent = 0; - - @Expose - public Map<VisitorReward, Integer> rewardsCount = new HashMap<>(); - } - - @Expose - public boolean isMigrated = false; -} |