diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-22 23:56:13 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-06-22 23:56:13 +0200 |
commit | 11443e506b17bc60c86fec5297b86d5a2fd0a4da (patch) | |
tree | d6f063cdeeeadc8c9e3cfd95e43091640fb7ee6c /src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt | |
parent | cc5e3b78f881e034f2bd4806ff4264fd2514be1d (diff) | |
download | skyhanni-11443e506b17bc60c86fec5297b86d5a2fd0a4da.tar.gz skyhanni-11443e506b17bc60c86fec5297b86d5a2fd0a4da.tar.bz2 skyhanni-11443e506b17bc60c86fec5297b86d5a2fd0a4da.zip |
Added Agaricus Cap countdown
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt b/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt index 2877c843c..4d0cce395 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt @@ -30,7 +30,7 @@ class HypixelData { fun readSkyBlockArea(): String { return ScoreboardData.sidebarLinesFormatted - .firstOrNull { it.startsWith(" §7⏣ ") } + .firstOrNull { it.startsWith(" §7⏣ ") || it.startsWith(" §5ф ") } ?.substring(5)?.removeColor() ?: "invalid" } |