diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-10-16 12:44:58 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-10-16 12:44:58 +0200 |
commit | 359ba9dbb26fd1e31d6620a610093e55056c2739 (patch) | |
tree | 3805aa98de913b7d76d43daa66ffb64ad28de688 | |
parent | a33034e3bf528999c128aeefda4a77f0799eb9ff (diff) | |
download | skyhanni-359ba9dbb26fd1e31d6620a610093e55056c2739.tar.gz skyhanni-359ba9dbb26fd1e31d6620a610093e55056c2739.tar.bz2 skyhanni-359ba9dbb26fd1e31d6620a610093e55056c2739.zip |
code cleanup
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCallWarning.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCallWarning.kt b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCallWarning.kt index 92daf50d4..7881af19d 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCallWarning.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityCallWarning.kt @@ -68,7 +68,7 @@ object HoppityCallWarning { */ private val pickupOutgoingCommandPattern by ChocolateFactoryAPI.patternGroup.pattern( "hoppity.call.pickup.outgoing", - "/selectnpcoption hoppity r_2_1", + "\\/selectnpcoption hoppity r_2_1", ) private val config get() = HoppityEggsManager.config.hoppityCallWarning @@ -154,6 +154,7 @@ object HoppityCallWarning { "§cBlocked picking up Hoppity without enough coins!", config::ensureCoins, actionName = "open bank menu", + // TODO if no booster cookie active, suggest to warp to hub/path find to bank. ideally into an utils action = { HypixelCommands.bank() }, ) } |