From c1f2803c56a9e6013c0bf54f3140f516e7fb33b0 Mon Sep 17 00:00:00 2001 From: s809 <43530948+s809@users.noreply.github.com> Date: Tue, 16 Apr 2024 21:39:56 +0500 Subject: [PATCH] Add missing newlines for override configs --- .../com/seibel/distanthorizons/core/config/Config.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java index 706c16904..4d67efd5c 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java @@ -898,8 +898,8 @@ public class Config .setAppearance(EConfigEntryAppearance.ONLY_IN_FILE) .set("") .comment("" - + "Overrides the IP address that is sent to the client for connecting to DH server." - + "Leave empty to let client use the IP used to connect to the MC server." + + "Overrides the IP address that is sent to the client for connecting to DH server.\n" + + "Leave empty to let client use the IP used to connect to the MC server.\n" + "") .build(); public static ConfigEntry connectPortOverride = new ConfigEntry.Builder() @@ -907,8 +907,8 @@ public class Config .setAppearance(EConfigEntryAppearance.ONLY_IN_FILE) .setMinDefaultMax(0, 0, 65535) .comment("" - + "Overrides the port that is sent to the client for connecting to DH server." - + "Set to 0 to use port from serverPort." + + "Overrides the port that is sent to the client for connecting to DH server.\n" + + "Set to 0 to use port from serverPort.\n" + "") .build();