Skip to content

Commit

Permalink
Fixed local script paths
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed Dec 13, 2024
1 parent 20f9cbc commit 82a224d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/dev/latvian/mods/kubejs/KubeJSPaths.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static Path dir(Path dir) {
Path LOCAL_DEV_PROPERTIES = LOCAL.resolve("dev.json");
Path EXPORT = dir(LOCAL.resolve("export"));
Path EXPORTED_PACKS = dir(LOCAL.resolve("exported_packs"));
Path LOCAL_STARTUP_SCRIPTS = dir(LOCAL.resolve("local_server_scripts"));
Path LOCAL_STARTUP_SCRIPTS = dir(LOCAL.resolve("local_startup_scripts"));
Path LOCAL_SERVER_SCRIPTS = dir(LOCAL.resolve("local_server_scripts"));

static Path get(PackType type) {
Expand Down

0 comments on commit 82a224d

Please sign in to comment.