Fix config typo in auto-purge-entities comments

This commit is contained in:
Ben Woo 2025-01-04 09:50:05 +08:00
parent b8f2ebdab7
commit df1cb2ccc2

View File

@ -93,7 +93,7 @@ class MVCoreConfigNodes {
final ConfigNode<Boolean> 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());