diff options
author | Empa <42304516+ItsEmpa@users.noreply.github.com> | 2024-07-06 08:44:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-06 08:44:43 +0200 |
commit | c1f3d47ef4b445e968f0197ff9eaca6f6c362987 (patch) | |
tree | 8400e034eccb48a5cbb0ea3b64126c5ab89bafc0 /src | |
parent | c4b09e50a6e49da34307c3694fc3d76db53c0ac8 (diff) | |
download | skyhanni-c1f3d47ef4b445e968f0197ff9eaca6f6c362987.tar.gz skyhanni-c1f3d47ef4b445e968f0197ff9eaca6f6c362987.tar.bz2 skyhanni-c1f3d47ef4b445e968f0197ff9eaca6f6c362987.zip |
Fix: Guild Rank Chat Formatting (#2191)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerChatManager.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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 1ac35e115..b6c0e16f9 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 @@ -62,7 +62,7 @@ object PlayerChatManager { */ private val guildPattern by patternGroup.pattern( "guild", - "§2Guild > (?<author>.+?)(?<guildRank> §e\\[\\w*])?§f: (?<message>.*)" + "§2Guild > (?<author>.+?) ?(?<guildRank>§e\\[\\w*])?§f: (?<message>.*)", ) /** |