aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at
diff options
context:
space:
mode:
authorappable <enzospiacitelli@gmail.com>2024-05-17 17:31:08 -0700
committerGitHub <noreply@github.com>2024-05-18 02:31:08 +0200
commit29b7984d878cb97645b13952db9876e19d9181fb (patch)
tree6892be8cadf2a2272e6ba71ff041a6898b82bc05 /src/main/java/at
parent071322a0a2bdf7b9b49d6546a003bdff9ba7ad4f (diff)
downloadskyhanni-29b7984d878cb97645b13952db9876e19d9181fb.tar.gz
skyhanni-29b7984d878cb97645b13952db9876e19d9181fb.tar.bz2
skyhanni-29b7984d878cb97645b13952db9876e19d9181fb.zip
Fix: Co-op capitalization in PlayerNameFormatter (#1825)
Diffstat (limited to 'src/main/java/at')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerNameFormatter.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerNameFormatter.kt b/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerNameFormatter.kt
index b5108c6ac..b617fd118 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerNameFormatter.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerNameFormatter.kt
@@ -85,7 +85,7 @@ class PlayerNameFormatter {
if (!isEnabled()) return
event.chatComponent = StringUtils.replaceIfNeeded(
event.chatComponent,
- Text.text("§bCo-Op > ") {
+ Text.text("§bCo-op > ") {
appendSibling(nameFormat(event.authorComponent))
appendText("§f: ")
appendSibling(event.messageComponent.intoComponent())