Skip to content

Commit

Permalink
Fixed packmode bug causing scripts not to load at all in newly create…
Browse files Browse the repository at this point in the history
…d directories
  • Loading branch information
LatvianModder committed Oct 19, 2023
1 parent 77dc4d9 commit 78d0d65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void preload(ScriptSource source) throws Throwable {

priority = Integer.parseInt(getProperty("priority", "0"));
ignored = getProperty("ignored", "false").equals("true") || getProperty("ignore", "false").equals("true");
packMode = getProperty("packmode", "default");
packMode = getProperty("packmode", "");
requiredMods.addAll(getProperties("requires"));
}

Expand Down

0 comments on commit 78d0d65

Please sign in to comment.