9
0
mirror of https://github.com/Winds-Studio/Leaf.git synced 2025-12-19 15:09:25 +00:00

[ci skip] fix ReduceChunkSourceUpdates wording

This commit is contained in:
Taiyou06
2025-07-08 12:48:57 +02:00
parent c87b046a04
commit 2a3d1c46ee

View File

@@ -17,13 +17,15 @@ public class ReduceChunkSourceUpdates extends ConfigModules {
public void onLoaded() {
config.addCommentRegionBased(getBasePath(), """
*** Experimental Feature ***
Reduces chunk source updates on inter-chunk player moves.""", """
Reduces chunk source updates on inter-chunk player moves.""",
"""
*** 实验性功能 ***
减少玩家跨区块移动时的区块源更新."""
);
enabled = config.getBoolean(getBasePath() + ".force-enabled", enabled);
if (config.getBoolean(getBasePath() + ".enabled", enabled)) {
LOGGER.warn("Disabled reduce-chunk-source-updates due to its experimental");
LOGGER.warn("The 'reduce-chunk-source-updates' feature is experimental and has been enabled.");
}
}
}