Skip to content

Commit

Permalink
Fix namespace being incorrect for JSON Advancements
Browse files Browse the repository at this point in the history
  • Loading branch information
ZockerAxel committed Dec 25, 2021
1 parent 9982b76 commit 3898215
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void loadFileAdvancements() {
File[] files = location.listFiles();
for(File file : files) {
if(file.isDirectory()) {
String namespace = location.getName();
String namespace = file.getName();
advancements.putAll(loadNamespace(namespace, "", file));
}
}
Expand Down

0 comments on commit 3898215

Please sign in to comment.