diff options
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt index f15f41e28..c7cc0c745 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt @@ -23,7 +23,6 @@ object ProfileStorageData { fun onChat(event: LorenzChatEvent) { "ยง7Switching to profile (?<name>.*)\\.\\.\\.".toPattern().matchMatcher(event.message) { nextProfile = group("name").lowercase() - println("switching to profile: '$nextProfile'") loaded = false PreProfileSwitchEvent().postAndCatch() } @@ -33,7 +32,6 @@ object ProfileStorageData { fun onWorldChange(event: WorldEvent.Load) { val profileName = nextProfile ?: return nextProfile = null - println("new world after profile swap.") val playerSpecific = playerSpecific if (playerSpecific == null) { @@ -95,7 +93,6 @@ object ProfileStorageData { private fun loadProfileSpecific(playerSpecific: Storage.PlayerSpecific, profileName: String, reason: String) { noTabListTime = -1 profileSpecific = playerSpecific.profiles.getOrPut(profileName) { Storage.ProfileSpecific() } - println("Loaded profileSpecific: $reason") tryMigrateProfileSpecific() ConfigLoadEvent().postAndCatch() loaded = true @@ -106,7 +103,6 @@ object ProfileStorageData { val playerUuid = LorenzUtils.getRawPlayerUuid() playerSpecific = SkyHanniMod.feature.storage.players.getOrPut(playerUuid) { Storage.PlayerSpecific() } migratePlayerSpecific() - println("loaded playerSpecific because of HypixelJoinEvent!") ConfigLoadEvent().postAndCatch() } |