Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
0x7d8 committed Sep 12, 2024
1 parent 652808a commit 61bf6d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static void main(final String[] args) {
System.arraycopy(vmArgs, 0, cmd, 1, vmArgs.length);

boolean windows = System.getProperty("os.name").startsWith("Windows");
cmd[1 + vmArgs.length] = "@libraries/net/neoforged/neoforge/" + forgeVersion + "/" + (windows ? "win" : "unix")
cmd[1 + vmArgs.length] = "@" + directoryPath + "/" + forgeVersion + "/" + (windows ? "win" : "unix")
+ "_args.txt";

System.arraycopy(args, 0, cmd, 2 + vmArgs.length, args.length);
Expand Down

0 comments on commit 61bf6d6

Please sign in to comment.