Skip to content

Commit

Permalink
Fix decompiler not being set and as such vanilla NG not being able to…
Browse files Browse the repository at this point in the history
… decompile.
  • Loading branch information
marchermans committed Dec 28, 2024
1 parent bdddcef commit 38ad487
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ private void configureToolsDefaults() {
tools.getJarSplitter().convention(
getStringProperty("tools.jarSplitter", JARSPLITTER_TOOL_ARTIFACT)
);
tools.getDecompiler().convention(
getStringProperty("tools.decompiler", DECOMPILER_TOOL_ARTIFACT)
);

RenderDocTools renderDocTools = tools.getRenderDoc();
renderDocTools.getRenderDocPath().convention(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class Constants {
public static final String FART_TOOL_ARTIFACT = "net.neoforged:AutoRenamingTool:2.0.4:all"
public static final String INSTALLERTOOLS_TOOL_ARTIFACT = "net.neoforged.installertools:installertools:2.1.7"
public static final String JARSPLITTER_TOOL_ARTIFACT = "net.neoforged.installertools:jarsplitter:2.1.7"
public static final String DECOMPILER_TOOL_ARTIFACT = "org.vineflower:vineflower:1.10.1"

public static final String DEFAULT_RECOMPILER_MAX_MEMORY = "1g"

Expand Down

0 comments on commit 38ad487

Please sign in to comment.