Skip to content

Commit

Permalink
修复了设置不允许创建领地的世界不生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdeZhang committed Apr 26, 2024
1 parent 408f26e commit a9230cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void reload() {
_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);
Expand Down

0 comments on commit a9230cd

Please sign in to comment.