Skip to content

Commit 8aaaabe

Browse files
committed
actually fix config path
1 parent aed48a2 commit 8aaaabe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

AnarchyExploitFixesFolia/src/main/java/me/xginko/aef/modules/packets/TabCompleteCrash.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public TabCompleteCrash() {
2020
StackOverflowError inside the TagParser class.""");
2121
this.log = config.getBoolean(configPath + ".log", false);
2222
this.kick = config.getBoolean(configPath + ".kick-player", false);
23-
this.sequences = config.getList(configPath + "characters", List.of("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
23+
this.sequences = config.getList(configPath + ".characters", List.of("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
2424
}
2525

2626
@Override

AnarchyExploitFixesLegacy/src/main/java/me/xginko/aef/modules/packets/TabCompleteCrash.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public TabCompleteCrash() {
2020
"StackOverflowError inside the TagParser class.");
2121
this.log = config.getBoolean(configPath + ".log", false);
2222
this.kick = config.getBoolean(configPath + ".kick-player", false);
23-
this.sequences = config.getList(configPath + "characters", Arrays.asList("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
23+
this.sequences = config.getList(configPath + ".characters", Arrays.asList("@", "[", "nbt", "=", "{", "}", "]")).toArray(new String[0]);
2424
}
2525

2626
@Override

0 commit comments

Comments
 (0)