From bdb69aa9120a2da5b23fa5d91114f6d3dfce888f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 28 Jul 2024 17:40:04 +0200 Subject: added regex test --- src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main') diff --git a/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt index 51240ecd3..88daf40b9 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/QuiverAPI.kt @@ -94,6 +94,10 @@ object QuiverAPI { // Bows that don't use the players arrows, checked using the SkyBlock ID private val fakeBowsPattern by group.pattern("fakebows", "^(BOSS_SPIRIT_BOW|CRYPT_BOW)$") private val quiverInventoryNamePattern by group.pattern("quivername", "^Quiver$") + + /** + * REGEX-TEST: §7Active Arrow: §fFlint Arrow §7(§e2880§7) + */ private val quiverInventoryPattern by group.pattern( "quiver.inventory", "§7Active Arrow: §.(?.*) §7\\(§e(?.*)§7\\)" -- cgit