aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-02 10:28:38 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-02 10:28:38 +0200
commit5a54bc5eda6786b39ad17def4adc6717a64b122e (patch)
tree2cc8eaa85d972d1f1eefdb695cef00adc3f518bb
parentaadd078953fbe7dad281d61fdad7504eaf196053 (diff)
downloadskyhanni-5a54bc5eda6786b39ad17def4adc6717a64b122e.tar.gz
skyhanni-5a54bc5eda6786b39ad17def4adc6717a64b122e.tar.bz2
skyhanni-5a54bc5eda6786b39ad17def4adc6717a64b122e.zip
code cleanup
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/SuperpairsClicksAlert.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/SuperpairsClicksAlert.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/SuperpairsClicksAlert.kt
index 7bb1acb3a..c8882a1b8 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/SuperpairsClicksAlert.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/SuperpairsClicksAlert.kt
@@ -13,8 +13,8 @@ class SuperpairsClicksAlert {
private val config get() = SkyHanniMod.feature.misc
private var roundsNeeded = -1
- private var roundsNeededRegex = Regex("""(?:Chain|Series) of (\d+):""")
- private var currentRoundRegex = Regex("""Round: (\d+)""")
+ private val roundsNeededRegex = Regex("""(?:Chain|Series) of (\d+):""")
+ private val currentRoundRegex = Regex("""Round: (\d+)""")
private val targetInventoryNames = arrayOf("Chronomatron", "Ultrasequencer")
@SubscribeEvent