diff options
author | Jordan <77755681+Jordyrat@users.noreply.github.com> | 2024-09-08 08:21:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-08 09:21:14 +0200 |
commit | 9352ace3e97c92645b176f88b6cef6e638121b95 (patch) | |
tree | 803cbb085fc1b9e4877a8e16c6db697d10e6d90b /src/main/java/at/hannibal2/skyhanni/config | |
parent | 5ac091a11d558717eb42106bcad35d23653dab5d (diff) | |
download | skyhanni-9352ace3e97c92645b176f88b6cef6e638121b95.tar.gz skyhanni-9352ace3e97c92645b176f88b6cef6e638121b95.tar.bz2 skyhanni-9352ace3e97c92645b176f88b6cef6e638121b95.zip |
Improvement: Powder Tracker revamped (#2394)
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/ProfileSpecificStorage.java | 2 |
1 files changed, 1 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 e7a7565bb..794819cf1 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java +++ b/src/main/java/at/hannibal2/skyhanni/config/storage/ProfileSpecificStorage.java @@ -534,7 +534,7 @@ public class ProfileSpecificStorage { public HotmTree hotmTree = new HotmTree(); @Expose - public Map<HotmAPI.Powder, PowderStorage> powder = new HashMap<>(); + public Map<HotmAPI.PowderType, PowderStorage> powder = new HashMap<>(); public static class PowderStorage { |