diff options
author | Äkwav <ekwav@coflnet.com> | 2023-10-31 19:39:24 +0100 |
---|---|---|
committer | Äkwav <ekwav@coflnet.com> | 2023-10-31 19:39:24 +0100 |
commit | 47ccf8c71f55c2223c535188ed6113f4a79aea2f (patch) | |
tree | 2454f90b96d3e798e50ad84be3ac5b48f462aa50 /src/main/java | |
parent | d95e58b220303b23c615e6ce3b359af55e11ae5d (diff) | |
download | COFL-47ccf8c71f55c2223c535188ed6113f4a79aea2f.tar.gz COFL-47ccf8c71f55c2223c535188ed6113f4a79aea2f.tar.bz2 COFL-47ccf8c71f55c2223c535188ed6113f4a79aea2f.zip |
fix string format
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/de/torui/coflsky/network/WSClientWrapper.java | 6 |
1 files changed, 3 insertions, 3 deletions
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() |