Skip to content

Commit

Permalink
fix string format
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekwav committed Oct 31, 2023
1 parent d95e58b commit 47ccf8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/de/torui/coflsky/network/WSClientWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ public boolean startConnection() {
}

Minecraft.getMinecraft().thePlayer.addChatMessage(
new ChatComponentText("Cofl could not establish a connection to any server!"+
"\nIf you use a vpn/proxy please try connecting without it.\n"
"If that does not work please contact us on our ")
new ChatComponentText("Cofl could not establish a connection to any server!\n"
+ "If you use a vpn/proxy please try connecting without it.\n"
+ "If that does not work please contact us on our ")
.setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED))
.appendSibling(new ChatComponentText("discord!")
.setChatStyle(new ChatStyle()
Expand Down

0 comments on commit 47ccf8c

Please sign in to comment.