aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-09 22:38:16 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-09 22:38:16 +0200
commitc5ef02ccbf91a823d01ba7d36c87f740b89271d6 (patch)
tree112200a9e58ce9a750d959e91996921a53e863e6 /src
parent2931c700994a3fe8f109e93ca96a8c365ebd3102 (diff)
downloadskyhanni-c5ef02ccbf91a823d01ba7d36c87f740b89271d6.tar.gz
skyhanni-c5ef02ccbf91a823d01ba7d36c87f740b89271d6.tar.bz2
skyhanni-c5ef02ccbf91a823d01ba7d36c87f740b89271d6.zip
removed debug messages
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/ProfileStorageData.kt4
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()
}