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 37d0883e2..79371c3f0 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 @@ -1738,10 +1738,9 @@ public class Config public static ConfigEntry enableServerGeneration = new ConfigEntry.Builder() .set(true) .comment("" - + " Should Distant Horizons slowly generate LODs \n" - + " outside the vanilla render distance? \n" - + "Depending on the generator mode, this will import existing chunks \n" - + "and/or generating missing chunks." + + "When enabled, Distant Horizons will attempt to download missing LODs from the server.\n" + + "\n" + + "Note: the server must have Distant Generation enabled for it to work." + "") .build(); diff --git a/core/src/main/resources/assets/distanthorizons/lang/en_us.json b/core/src/main/resources/assets/distanthorizons/lang/en_us.json index 4357d439c..c8df027dd 100644 --- a/core/src/main/resources/assets/distanthorizons/lang/en_us.json +++ b/core/src/main/resources/assets/distanthorizons/lang/en_us.json @@ -763,6 +763,11 @@ "distanthorizons.config.server.levelKeyPrefix.@tooltip": "Prefix of the level keys sent to the clients.\nIf the mod is running behind a proxy, each backend should use a unique value.\nIf this value is empty, level key will be based on the server's seed hash.", + "distanthorizons.config.server.enableServerGeneration": + "Enable Server Generation", + "distanthorizons.config.server.enableServerGeneration.@tooltip": + "When enabled, Distant Horizons will attempt to download missing LODs from the server.\n\nNote: the server must have Distant Generation enabled for it to work.", + "distanthorizons.config.server.generationRequestRateLimit": "Rate Limit for Generation Requests", "distanthorizons.config.server.generationRequestRateLimit.@tooltip":