diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-10-16 20:27:17 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-10-16 20:27:17 +0200 |
commit | be1e1758c21329e1daec2446f2907d69cae14b3b (patch) | |
tree | 8888347a17fd348a6fd5c130f7f35092c9326b9e | |
parent | 28086af0aa4ade91b6e1c46f29b659230d45af57 (diff) | |
download | skyhanni-be1e1758c21329e1daec2446f2907d69cae14b3b.tar.gz skyhanni-be1e1758c21329e1daec2446f2907d69cae14b3b.tar.bz2 skyhanni-be1e1758c21329e1daec2446f2907d69cae14b3b.zip |
cleanup debug
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt index 2eb2bc293..20dbcdfd1 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt @@ -17,6 +17,7 @@ import at.hannibal2.skyhanni.utils.NEUItems.getPrice import at.hannibal2.skyhanni.utils.NumberUtil.shortFormat import at.hannibal2.skyhanni.utils.RecalculatingValue import at.hannibal2.skyhanni.utils.SimpleTimeMark +import at.hannibal2.skyhanni.utils.StringUtils.removeColor import at.hannibal2.skyhanni.utils.TimeLimitedCache import net.minecraftforge.fml.common.eventhandler.SubscribeEvent import kotlin.time.Duration.Companion.minutes @@ -69,7 +70,7 @@ object SlayerAPI { add("activeSlayer: $activeSlayer") add("isInCorrectArea: $isInCorrectArea") add("isInAnyArea: $isInAnyArea") - add("latestSlayerProgress: $latestSlayerProgress") + add("latestSlayerProgress: ${latestSlayerProgress.removeColor()}") } } |