From 69273d6df1fcb8f1d2b2e3b8357b48973d0a8dc2 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Sat, 27 Apr 2024 16:15:43 +0200 Subject: Fix: Guild chat rank detection (#1568) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerChatManager.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerChatManager.kt b/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerChatManager.kt index e47daa4f2..96fad9711 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerChatManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerChatManager.kt @@ -56,10 +56,11 @@ class PlayerChatManager { * REGEX-TEST: §2Guild > §6⚔ §6[MVP§3++§6] RealBacklight§f: §r!warp * REGEX-TEST: §2Guild > §b[MVP§3+§b] Eisengolem§f: §r!pt * REGEX-TEST: §2Guild > §b[MVP§d+§b] zunoff §e[VET]§f: §rwas löuft + * REGEX-TEST: §2Guild > §7stinkywinkyowo §6[O]§f: §rraven____ > hi */ private val guildPattern by patternGroup.pattern( "guild", - "§2Guild > (?§.+?)(? §e\\[\\w*])?§f: §r(?.*)" + "§2Guild > (?§.+?)(? §.\\[\\w*])?§f: §r(?.*)" ) /** -- cgit