diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-09-08 13:11:08 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-09-08 13:11:08 +0200 |
commit | 7519ef5249502f9aa14e350e5e5b8b83eab0e1eb (patch) | |
tree | 1cddc021c678fba2dac08b1cefa16f762a955a70 /src/main/java/at/hannibal2 | |
parent | 68044ebd31dc1af39c01a26285b1de1eb46c3263 (diff) | |
download | skyhanni-7519ef5249502f9aa14e350e5e5b8b83eab0e1eb.tar.gz skyhanni-7519ef5249502f9aa14e350e5e5b8b83eab0e1eb.tar.bz2 skyhanni-7519ef5249502f9aa14e350e5e5b8b83eab0e1eb.zip |
fix typo
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/inventory/SuperpairsClicksAlert.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/SuperpairsClicksAlert.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/SuperpairsClicksAlert.kt index 8e3c12679..5c5011c85 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/SuperpairsClicksAlert.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/SuperpairsClicksAlert.kt @@ -19,7 +19,7 @@ object SuperpairsClicksAlert { private var roundsNeeded = -1 private val roundsNeededRegex = Regex("""(?:Chain|Series) of (\d+):""") private val currentRoundRegex = Regex("""Round: (\d+)""") - private val targetInventoryNames = arrayOf("Chronomatron", "c") + private val targetInventoryNames = arrayOf("Chronomatron", "Ultrasequencer") @SubscribeEvent fun onInventoryOpen(event: InventoryOpenEvent) { |