diff options
author | appable <enzospiacitelli@gmail.com> | 2024-05-17 17:31:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-18 02:31:08 +0200 |
commit | 29b7984d878cb97645b13952db9876e19d9181fb (patch) | |
tree | 6892be8cadf2a2272e6ba71ff041a6898b82bc05 /src/main/java/at | |
parent | 071322a0a2bdf7b9b49d6546a003bdff9ba7ad4f (diff) | |
download | skyhanni-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.kt | 2 |
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()) |