From 1ccc29090f5e711759a2daebed87ab05f13e7580 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 30 Sep 2023 10:32:51 +0200 Subject: Fixed bits and powder not saving in the visitor drop statistics. --- src/main/java/at/hannibal2/skyhanni/config/Storage.java | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/Storage.java b/src/main/java/at/hannibal2/skyhanni/config/Storage.java index 231202367..c495eb9fa 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Storage.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Storage.java @@ -187,6 +187,15 @@ public class Storage { @Expose public long coinsSpent = 0; + @Expose + public long bits = 0; + + @Expose + public long mithrilPowder = 0; + + @Expose + public long gemstonePowder = 0; + @Expose public Map rewardsCount = new HashMap<>(); } -- cgit