From df1cb2ccc280014a8df036368394fbb6db0a6966 Mon Sep 17 00:00:00 2001 From: Ben Woo <30431861+benwoo1110@users.noreply.github.com> Date: Sat, 4 Jan 2025 09:50:05 +0800 Subject: [PATCH] Fix config typo in auto-purge-entities comments --- .../org/mvplugins/multiverse/core/config/MVCoreConfigNodes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/mvplugins/multiverse/core/config/MVCoreConfigNodes.java b/src/main/java/org/mvplugins/multiverse/core/config/MVCoreConfigNodes.java index a58ca018..211ec222 100644 --- a/src/main/java/org/mvplugins/multiverse/core/config/MVCoreConfigNodes.java +++ b/src/main/java/org/mvplugins/multiverse/core/config/MVCoreConfigNodes.java @@ -93,7 +93,7 @@ class MVCoreConfigNodes { final ConfigNode AUTO_PURGE_ENTITIES = node(ConfigNode.builder("world.auto-purge-entities", Boolean.class) .comment("") - .comment("Sets whether Multiverse will purge mobs and entities with be automatically.") + .comment("Sets whether Multiverse will purge mobs and entities automatically.") .defaultValue(false) .name("auto-purge-entities") .build());