Skip to content

Commit

Permalink
actually fix config path
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Dec 31, 2024
1 parent aed48a2 commit 8aaaabe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public TabCompleteCrash() {
StackOverflowError inside the TagParser class.""");
this.log = config.getBoolean(configPath + ".log", false);
this.kick = config.getBoolean(configPath + ".kick-player", false);
this.sequences = config.getList(configPath + "characters", List.of("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
this.sequences = config.getList(configPath + ".characters", List.of("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public TabCompleteCrash() {
"StackOverflowError inside the TagParser class.");
this.log = config.getBoolean(configPath + ".log", false);
this.kick = config.getBoolean(configPath + ".kick-player", false);
this.sequences = config.getList(configPath + "characters", Arrays.asList("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
this.sequences = config.getList(configPath + ".characters", Arrays.asList("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
}

@Override
Expand Down

0 comments on commit 8aaaabe

Please sign in to comment.