From 97ee71bbd08dc93005a125f0723e562dcd41861f Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Tue, 27 Jun 2023 13:56:30 +0200 Subject: [PATCH] Update settings name in queue.target_size warning --- .../src/main/java/com/fastasyncworldedit/core/Fawe.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worldedit-core/src/main/java/com/fastasyncworldedit/core/Fawe.java b/worldedit-core/src/main/java/com/fastasyncworldedit/core/Fawe.java index 8f4818f2f..eb7eaf8ce 100644 --- a/worldedit-core/src/main/java/com/fastasyncworldedit/core/Fawe.java +++ b/worldedit-core/src/main/java/com/fastasyncworldedit/core/Fawe.java @@ -356,8 +356,8 @@ public class Fawe { ); if (Settings.settings().QUEUE.TARGET_SIZE < 4 * Settings.settings().QUEUE.PARALLEL_THREADS) { LOGGER.error( - "queue.target_size is {}, and queue.parallel_threads is {}. It is HIGHLY recommended that queue" + - ".target_size be at least four times queue.parallel_threads or greater.", + "queue.target-size is {}, and queue.parallel_threads is {}. It is HIGHLY recommended that queue" + + ".target-size be at least four times queue.parallel-threads or greater.", Settings.settings().QUEUE.TARGET_SIZE, Settings.settings().QUEUE.PARALLEL_THREADS );