From 689914a4b32d9af520e8958f74e0259e549bf802 Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Sun, 12 Jan 2025 10:02:15 +0100 Subject: [PATCH] adjust config comment for allow-owner-change --- src/main/java/codechicken/chunkloader/ChunkLoaderManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/codechicken/chunkloader/ChunkLoaderManager.java b/src/main/java/codechicken/chunkloader/ChunkLoaderManager.java index 8f4e6f3..1276e84 100644 --- a/src/main/java/codechicken/chunkloader/ChunkLoaderManager.java +++ b/src/main/java/codechicken/chunkloader/ChunkLoaderManager.java @@ -646,7 +646,7 @@ public static void initConfig(ConfigFile config) { .getBooleanValue(true); allowOwnerChange = config.getTag("allow-owner-change") .setComment( - "Enabling this enables the option to change the owner of a Chunkloader. By default only the owner can change it. In case of 'user-interact' is false, only OPs can edit them. WARNING: If you change a owner of a chunkloader, you have no idea what may break/explode.") + "Enabling this enables the option to change the owner of a Chunkloader. If op-interact is enabled, only OPs can change this (for security reason). WARNING: If you change a owner of a chunkloader, you have no idea what may break/explode.") .getBooleanValue(false); maxChunks = config.getTag("maxchunks") .setComment("The maximum number of chunks per chunkloader")