修复了设置不允许创建领地的世界不生效的问题
Java CI-CD with Maven / build (push) Successful in 14m18s Details

This commit is contained in:
zhangyuheng 2024-04-26 09:48:59 +08:00
parent 408f26e003
commit a9230cd03f
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<groupId>cn.lunadeer</groupId>
<artifactId>Dominion</artifactId>
<version>1.20.1-beta</version>
<version>1.20.2-beta</version>
<packaging>jar</packaging>
<name>Dominion</name>

View File

@ -58,7 +58,7 @@ public class ConfigManager {
_limit_max_y = _file.getInt("Limit.MaxY", 320);
_limit_amount = _file.getInt("Limit.Amount", 10);
_limit_depth = _file.getInt("Limit.Depth", 10);
_world_black_list = _file.getStringList("WorldBlackList");
_world_black_list = _file.getStringList("Limit.WorldBlackList");
_check_update = _file.getBoolean("CheckUpdate", true);
_tp_enable = _file.getBoolean("Teleport.Enable", false);
_tp_delay = _file.getInt("Teleport.Delay", 0);