diff options
author | Jordan <77755681+Jordyrat@users.noreply.github.com> | 2024-05-13 16:33:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 17:33:54 +0200 |
commit | 8a7c1e633184e074f177f5b93691b33a052a846b (patch) | |
tree | 46569c90c736be9a76e7ee07fd935160106cc510 /src/main/java | |
parent | 2cad7c87e85afa94465ed9a79cec4a20b303b26f (diff) | |
download | skyhanni-8a7c1e633184e074f177f5b93691b33a052a846b.tar.gz skyhanni-8a7c1e633184e074f177f5b93691b33a052a846b.tar.bz2 skyhanni-8a7c1e633184e074f177f5b93691b33a052a846b.zip |
Fix: Removed excess space in chat formatting (#1785)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java')
-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 c19fa4a42..023589e0f 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 @@ -96,7 +96,7 @@ class PlayerChatManager { */ private val privateIslandRankPattern by patternGroup.pattern( "privateislandrank", - "(?<prefix>.*?)(?<privateIslandRank>§.\\[(?!MVP(§.\\++)?§.]|VIP\\+*|YOU§.TUBE|ADMIN|MOD|GM)[^]]+\\])(?<suffix>.*)" + "(?<prefix>.*?)(?<privateIslandRank>§.\\[(?!MVP(§.\\++)?§.]|VIP\\+*|YOU§.TUBE|ADMIN|MOD|GM)[^]]+\\]) (?<suffix>.*)" ) /** |