From 47ccf8c71f55c2223c535188ed6113f4a79aea2f Mon Sep 17 00:00:00 2001 From: Äkwav Date: Tue, 31 Oct 2023 19:39:24 +0100 Subject: fix string format --- src/main/java/de/torui/coflsky/network/WSClientWrapper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/de/torui/coflsky/network/WSClientWrapper.java b/src/main/java/de/torui/coflsky/network/WSClientWrapper.java index 2f860d7..6e90455 100644 --- a/src/main/java/de/torui/coflsky/network/WSClientWrapper.java +++ b/src/main/java/de/torui/coflsky/network/WSClientWrapper.java @@ -68,9 +68,9 @@ public class WSClientWrapper { } 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() -- cgit