diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-05-27 08:59:02 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-05-27 08:59:02 +0200 |
commit | 239a7b17e15eaa5f3ff8509aecef714d8c277ee9 (patch) | |
tree | f249c345d188c1355f3f126b2b7f873a4a4c353c /src/main/java/at | |
parent | 9ca1458eaeecebbd349fc6780c3f0d22b43dd05f (diff) | |
download | skyhanni-239a7b17e15eaa5f3ff8509aecef714d8c277ee9.tar.gz skyhanni-239a7b17e15eaa5f3ff8509aecef714d8c277ee9.tar.bz2 skyhanni-239a7b17e15eaa5f3ff8509aecef714d8c277ee9.zip |
added workarounds for profile data not loaded problems
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt index c5f072587..e44c1089e 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt @@ -41,7 +41,7 @@ object ProfileStorageData { DelayedRun.runDelayed(10.seconds) { workaroundIn10SecondsProfileStorage(profileName) } - ErrorManager.skyHanniError("playerSpecific is null in ProfileJoinEvent!") + return } if (sackPlayers == null) { ErrorManager.skyHanniError("sackPlayers is null in ProfileJoinEvent!") @@ -61,7 +61,7 @@ object ProfileStorageData { "failed to load your profile data a second time", "workaround in 10 seconds did not work" ) - ErrorManager.skyHanniError("playerSpecific is null in ProfileJoinEvent!") + ErrorManager.skyHanniError("playerSpecific is still null in ProfileJoinEvent!") } if (sackPlayers == null) { ErrorManager.skyHanniError("sackPlayers is null in ProfileJoinEvent!") |