diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-06-28 08:26:30 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 00:26:30 +0200 |
commit | 599dcb31d1144454f2e82e5fa554f55c24f7b054 (patch) | |
tree | 82350bbd5dc9a607af78ea3e5ae279712e3fb391 /src | |
parent | 53caebdecfffdcb3c386bc9ae412c32e8a6c709c (diff) | |
download | skyhanni-599dcb31d1144454f2e82e5fa554f55c24f7b054.tar.gz skyhanni-599dcb31d1144454f2e82e5fa554f55c24f7b054.tar.bz2 skyhanni-599dcb31d1144454f2e82e5fa554f55c24f7b054.zip |
Merge pull request #266
* fix
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/GhostCounter.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/GhostCounter.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/GhostCounter.kt index 58f190434..39ff0fd06 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/GhostCounter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/GhostCounter.kt @@ -54,7 +54,7 @@ object GhostCounter { val hidden get() = ProfileStorageData.profileSpecific?.ghostCounter private var display = listOf<List<Any>>() private var ghostCounterV3File = File("." + File.separator + "config" + File.separator + "ChatTriggers" + File.separator + "modules" + File.separator + "GhostCounterV3" + File.separator + ".persistantData.json") - private val skillXPPattern = ".*§3\\+(?<gained>.*) .* \\((?<total>.*)\\/(?<current>.*)\\).*".toPattern() + private val skillXPPattern = ".*§3\\+(?<gained>.*).*\\((?<total>.*)\\/(?<current>.*)\\).*".toPattern() private val killComboExpiredPattern = "§cYour Kill Combo has expired! You reached a (?<combo>.*) Kill Combo!".toPattern() private val ghostXPPattern = "(?<current>\\d+(?:\\.\\d+)?(?:,\\d+)?[kK]?)\\/(?<total>\\d+(?:\\.\\d+)?(?:,\\d+)?[kKmM]?)".toPattern() private val bestiaryPattern = "BESTIARY Ghost .*➜(?<newLevel>.*)".toPattern() |