diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-07-01 08:31:28 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-01 00:31:28 +0200 |
commit | ebb9240c320c007143d338d37a3cb51bf77cac17 (patch) | |
tree | 4d709f7a88d23ccfb50ee59a21e1ac0af4e6191e /src/main/java/at/hannibal2/skyhanni/config | |
parent | 3567d74fe1b4da52c07e952596ae2bddee29a8e5 (diff) | |
download | skyhanni-ebb9240c320c007143d338d37a3cb51bf77cac17.tar.gz skyhanni-ebb9240c320c007143d338d37a3cb51bf77cac17.tar.bz2 skyhanni-ebb9240c320c007143d338d37a3cb51bf77cac17.zip |
add things (#273)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/Storage.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Storage.java b/src/main/java/at/hannibal2/skyhanni/config/Storage.java index ccae2ce25..a1f9fbfb1 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Storage.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Storage.java @@ -7,6 +7,7 @@ import at.hannibal2.skyhanni.features.garden.fortuneguide.FarmingItems; import at.hannibal2.skyhanni.features.garden.visitor.VisitorReward; import at.hannibal2.skyhanni.features.misc.FrozenTreasure; import at.hannibal2.skyhanni.features.misc.GhostCounter.Option; +import at.hannibal2.skyhanni.features.rift.KloonTerminal; import at.hannibal2.skyhanni.utils.LorenzVec; import com.google.gson.annotations.Expose; import net.minecraft.item.ItemStack; @@ -247,7 +248,15 @@ public class Storage { public Map<FrozenTreasure, Integer> treasureCount = new HashMap<>(); } - public long nextCityProjectParticipationTime = 0L; + @Expose + public RiftStorage rift = new RiftStorage(); + + public static class RiftStorage { + + @Expose + public List<KloonTerminal> completedKloonTerminals = new ArrayList<>(); + + } @Expose public Map<String, SlayerProfitList> slayerProfitData = new HashMap<>(); |