From 29b7984d878cb97645b13952db9876e19d9181fb Mon Sep 17 00:00:00 2001 From: appable Date: Fri, 17 May 2024 17:31:08 -0700 Subject: Fix: Co-op capitalization in PlayerNameFormatter (#1825) --- .../java/at/hannibal2/skyhanni/data/hypixel/chat/PlayerNameFormatter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at') 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()) -- cgit