summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorEric W <42985687+ericpretzel@users.noreply.github.com>2023-09-10 00:12:30 -0700
committerGitHub <noreply@github.com>2023-09-10 09:12:30 +0200
commit8dabd75537ad58654018b29c144143d43cf956fa (patch)
treedf7f036fdbe0a633db6fce24a65b81bbc8a3c066 /src/main/java/at/hannibal2/skyhanni/data
parentc54eccb4204d0d1212b71020b05c1c01d5be0fe1 (diff)
downloadskyhanni-8dabd75537ad58654018b29c144143d43cf956fa.tar.gz
skyhanni-8dabd75537ad58654018b29c144143d43cf956fa.tar.bz2
skyhanni-8dabd75537ad58654018b29c144143d43cf956fa.zip
Fixed Ender Node Tracker tracking Mite Gel incorrectly and npc/george/lowest bin price problems. #430
* fix not using lBIN for certain items * set loaded to true before broadcasting ConfigLoadEvent * now accurately tracks mite gel
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt
index f9eb6b024..36940104b 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt
@@ -91,8 +91,8 @@ object ProfileStorageData {
noTabListTime = -1
profileSpecific = playerSpecific.profiles.getOrPut(profileName) { Storage.ProfileSpecific() }
tryMigrateProfileSpecific()
- ConfigLoadEvent().postAndCatch()
loaded = true
+ ConfigLoadEvent().postAndCatch()
}
@SubscribeEvent